Re: URL encoding problem.

2005-09-13 Thread Joe Germuska
Now, we're a friendly lot here and all, but what does this message have to do with Struts? Of course, I'm not helping things to point out to you that JavaScript has built-in functions for encoding and decoding URIs, and any time you construct a URL, you should be sure to encode your parameter

RE: URL encoding problem.

2005-09-13 Thread Holshausen, Ron
Hi Senthil, You will have to encode the password. Have a look at the Jakarta commons codec library http://jakarta.apache.org/commons/codec/, they have a org.apache.commons.codec.net.URLCodec that should help you. Yours truly, Ron -Original Message- From: senthil Kumar [mailto:[EMAIL PRO

Re: URL Encoding

2005-07-18 Thread Jeff Beal
Have you looked at the html:link tag? (http://struts.apache.org/userGuide/struts-html.html#link) Link text On 7/18/05, Senthilrajan VS <[EMAIL PROTECTED]> wrote: > Hi All, > > I am calling the action directly using the hyper link, for example > /sample.do?table=test. The values for this action

Re: URL Encoding

2005-07-18 Thread Yoge
Use java.net.URLEncoder.encode method. On 7/18/05, Senthilrajan VS <[EMAIL PROTECTED]> wrote: > Hi All, > > I am calling the action directly using the hyper link, for example > /sample.do?table=test. The values for this action is generated dynamically. I > want to Encode this URL. Is there an