Can Someone Please tell me
"How to fetch attributes of any action class into another jsp page?"
i am having an actionclass "FindQuestion.java" which have an attribute "private int ra,ua;". I have made the getter and setter of both "ra" and "ua". Now i have another jsp page "home.jsp" which displays few of the attributes of "FindQuestion.java" in <s:property value=""/> tag, which is loaded upon an action with reference to "FindQuestion.java". There is also a form with a "check" button which takes an integer from user with the <s:select name ="ua" (list of integers) /> tag.
I need to fetch another attribute "ra" from "FindQuestion.java" which will be only used to compare its value with the value of "ua" (from select tag) upon the action of "check" button. If these are equal then shows message "Match Successfull" otherwise "Matching Failed". [ra is not to be displayed on jsp page].
Can someone suggest what java or any other coding is to be done.
Thanks in advance.

<s:test> <s:if> <s:else>etc. – pKs Jul 10 '12 at 10:06