This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
i want to get ipaddress of pc in jsp page and want to send this value to action class. my code is as follows -
how can i get this s_ipAddress value in my action class.
Fidel Edwards
Ranch Hand
Joined: Mar 19, 2008
Posts: 202
posted
0
sa sam wrote:i want to get ipaddress of pc in jsp page and want to send this value to action class. my code is as follows -
how can i get this s_ipAddress value in my action class.
Your Action class would not be able to receive populated form bean until you submit it. So please create a property in your FormBean class (say s_ipAddress) and then try to access that property from your Action class
God Gave Me Nothing I Wanted, He Gave Me Everything I Needed.
sa sam
Ranch Hand
Joined: Mar 01, 2009
Posts: 46
posted
0
i want to get that value after clicking on submit button.