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 his but subsequent calls do not use the new value of the variable.
What am I doing wrong and what is the proper procedure. I am a relative newbie to this so don't worry about insulting me by providing more detail than you think is sufficient.
String foo = (String) request.getAttribute("menu_item");
this sets the value correctly the first time the page is his but subsequent calls do not use the new value of the variable.
What am I doing wrong and what is the proper procedure. I am a relative newbie to this so don't worry about insulting me by providing more detail than you think is sufficient.