> Is there anyway I can hide sending all the URL parameters (in > the browser address) from once page to other whenever I do > submit/click on html link?
If you set method="post" in your "form" element (which Strut's <html:form...> tag does as default) the arguments will not appear as part of the URL. But if you're using an html hyperlink, or the Struts <html:link...> tag, you cannot pass arguments without having them appear in the URL. -- Tim Slattery [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

