Re: JSP Expression inside Struts html:text property

2003-10-13 Thread Nicolas De Loof
- From: "Jonathan Hawkins" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, October 13, 2003 4:26 PM Subject: JSP Expression inside Struts html:text property > Howdy - > > I have some JSP code that looks like this: > &g

RE: JSP Expression inside Struts html:text property

2003-10-13 Thread Paul McCulloch
When using a runtime expression as an attribute value the whole attribute must be a single expression: " value=""/> Paul -Original Message- From: Jonathan Hawkins [mailto:[EMAIL PROTECTED] Sent: 13 October 2003 15:27 To: Struts Users Mailing List Subject: JSP Expres

JSP Expression inside Struts html:text property

2003-10-13 Thread Jonathan Hawkins
Howdy - I have some JSP code that looks like this: <% for(int x=1;x <=7;x++){ %> <% } %> of course I was expecting the HTML output to be something like: Instead I am getting : Anyone have another way to achieve the desired output? I looked into the html:logic tag and think tha