| Author |
passing var through included jsp to included jsp
|
Marko Debac
Ranch Hand
Joined: Aug 21, 2006
Posts: 121
|
|
Hi, how can I pass var to 3th jsp, when I have in first setting var, and include 2nd jsp.. 1st jsp: 2nd jsp: 3nd jsp: So, may global question is: how in practice it works - passing var through various jsp (maybe with requesScope, but how)? And what I can do in my situation? please help, Marko
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56232
|
|
|
If you do not specify a scope on <c:set>, it defaults to page scope. To make sure that a scoped variable (not a "var") is available throughout the request, use request scope.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: passing var through included jsp to included jsp
|
|
|