posted 20 years ago i am trying to use 3 hidden fields in form but they cannot be passed with struts html tags
Liz,
As a point of clarification, you will always be submitting requests using "simple HTML" since custom tags get translated into Java code that generate simple HTML which is then sent to the client as part of the response. For example, an html:hidden tag will render an input type="hidden" tag in the response sent to the client.
When you use the html:hidden tags, check the rendered HTML (view source in your web browser) to see what the differences are with the HTML that you used successfully. As implied by the previous poster, you probably just need to tweak the tag settings a little bit. It would also help us help you if you posted snippets from your JSP where you use html:hidden tags and the "simple HTML" so we can get a better idea of what's going on.