On 8/27/05, Andreas Schildbach <[EMAIL PROTECTED]> wrote: > Brian Cook wrote: > > > Is there a reason that the URL parameters can not be included as a > > hidden field in the form? i.e. Instead of setting a form tag with the > > action set to "resource.jsp?param=value". Set up your form to post the > > value with the form as a hidden form field set up > > The reason is that from the form, I am including another resource (kind > of a plugin/fragment/portlet), which hasn't got a clue if it is included > in a POST or GET request. > > Is there a way at all to set a hidden parameter with JSTL <c:include ...>? <snip/>
The JSTL core taglib does not have a <c:include> tag. It does have a <c:import> tag, which I think you might be refering to, and params can be passed in via <c:param> children (tags). -Rahul > > Regards, > > Andreas --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
