Re: parameter value is not coming correct with html:link

2006-09-20 Thread Nuwan Chandrasoma
ubject: parameter value is not coming correct with html:link hi, I am trying to display some hyper links which links to same action called 'edituser.do'. adding to that i have pass the user email id as parameters. To achieve that i am using following code. paramProperty="email"&

Re: parameter value is not coming correct with html:link

2006-09-20 Thread Chris Pratt
That's a standard URLEncoding conversion. There are very few non-alphanumeric characters that are allowed in a URL and that's the properly encoded URL. If you use it as is and check the value of the email parameter (with request.getParameter("email")) in the action mapped to edituser.do, you sho

parameter value is not coming correct with html:link

2006-09-20 Thread Venkata Phani Kumar
hi, I am trying to display some hyper links which links to same action called 'edituser.do'. adding to that i have pass the user email id as parameters. To achieve that i am using following code. every thing is fine but the link is looking like this /edituser.do?email=mail%40mail.com Infact