Re: HTML Encoding in Struts2

2007-08-01 Thread Sawan
THANKS...Its working now...:jumping: -- View this message in context: http://www.nabble.com/HTML-Encoding-in-Struts2-tf4198863.html#a11942434 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-

Re: HTML Encoding in Struts2

2007-08-01 Thread Toni Lyytikäinen
http://struts.apache.org/2.x/docs/property.html The property tag escapes the string by default. Try On 8/1/07, Sawan <[EMAIL PROTECTED]> wrote: > > > Hi experts, > > I have following code... > > JAVA: > ArrayList obj = new ArrayList(); > obj.add(" www.google.com Visit google "); > obj.add(" www.

Re: HTML Encoding in Struts2

2007-08-01 Thread Dave Newton
--- Sawan <[EMAIL PROTECTED]> wrote: > On jsp page source, I am getting " href="www.google.com">Visit > google" and > "Visit > yahoo" > > How can I make both linkable..? http://struts.apache.org/2.x/docs/property.html Note the "escape" attribute. Now you can