Re: Request parameters in action forward

2006-06-19 Thread Don Vawter
Can you take the request parameter and populate a hidden form field with it? Mixing request params with form fields has caused me grief more than once. On Jun 19, 2006, at 7:34 PM, Antonis Lebesis wrote: Hello, I have a jsp (foo.jsp) that displays information about a certain foo. I have defi

Re: jsp:setProperty puzzlement

2006-06-18 Thread Don Vawter
Figured it out. The setProperty tag is ignored when inside a useBean tag if the bean has already been instantiated. On Jun 18, 2006, at 7:38 AM, Don Vawter wrote: I am trying to set a property using setProperty. The method works if the property doesn't already exist but if the proper

jsp:setProperty puzzlement

2006-06-18 Thread Don Vawter
I am trying to set a property using setProperty. The method works if the property doesn't already exist but if the property is already defined (subsequent page hits) it fails to update the property. Here is the snippet: scope="session" > The current active link is:<%=menu%> <%=d%> The curr

Re: passing parameters to tiles include files

2006-06-17 Thread Don Vawter
ink of the latter as extra information that pertains to processing the request. Also, request-scope values disappear when the request is over. Paul Don Vawter <[EMAIL PROTECTED]> wrote: I have been trying to use a request parameter in an included tiles file (navigation.jsp) Stri

passing parameters to tiles include files

2006-06-17 Thread Don Vawter
I have been trying to use a request parameter in an included tiles file (navigation.jsp) String foo = (String) request.getAttribute("menu_item"); this sets the value correctly the first time the page is hit but subsequent calls do not use the new value of the variable. What am I doing wrong