http://struts.apache.org/2.x/docs/property.html
The property tag escapes the string by default. Try <s:property escape="false" /> 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.yahoo.com Visit yahoo ") > > JSP: > <s:iterator value = "obj "> > <s:property /> > </s:iterator> > > On jsp page source, I am getting "<a > href="www.google.com">Visit google</a>" and > "<a href="www.yahoo.com">Visit yahoo</a>" > > So it is not linking "Visit google" and "Visit yahoo", instead of it is > showing the whole string " www.google.com Visit google " and > www.yahoo.com > Visit yahoo . > > How can I make both linkable..? > > Thanks in advance > > Sawan > > > -- > View this message in context: > http://www.nabble.com/HTML-Encoding-in-Struts2-tf4198863.html#a11942087 > Sent from the Struts - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >