Let's say in your Action class you had the following line:
This gives you a request scoped variable with the name "AnswerToLife" and a value of 42.
Then in your
JSP, you have the following statement:
This creates a new variable in session scope named UlitmateAnswer that takes as its value the value of the request scoped variable AnswerToLife.
[ November 16, 2007: Message edited by: Merrill Higginson ]