Hi,

I have a contact page, which contains a struts form. However, on that page, when trying to read the URL parameters, I get a zero instead of the parameter value, unless I use <%= request.getParameter() %>.

Example:

URL loading the contact form page: http://www.somedomain.com/contact.do?itemCode=ABC

Contact Form Page:
......
<p>Please send me info regarding ${param.itemCode}</p>
<html:form action="contactForm">
....
....
<html:submit>Submit</html:submit>
</html:form>
.....


The paragraph in the Contact Form page above shows "Please send me info regarding 0". If I change ${param.itemCode} with <%= request.getParameter("itemCode") %>, I get "Please send me info regarding ABC", which is what I want to show. This is the first time I encountered this issue. Normally both would return the same thing.

Any idea what is happening? I'm trying to avoid the "<%= %>" syntax as much as possible.

Thanks,

Otmar

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to