| Author |
Changing request Attribute via Javascript
|
Rafael Andrade
Greenhorn
Joined: Aug 04, 2006
Posts: 15
|
|
Hi there. I have an Attribute in the request, wich was set in may action like this: request.setAttribute("imovelDefinido", "N"); Now I want to change it in my JSP when I click on a radio button, wich means the onclick event. I think the best (or the only) way is using javascript. How can I do it? Thanks! Rafael
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56201
|
|
Originally posted by Rafael Andrade: I think the best (or the only) way is using javascript.
You are incorrect. There is no way to do it. While the page is sitting in the user's browser for him or her to interact with it, there is no request active. No request means no request attributes. So what are you going to change? The request that created the HTML page to send to the broswer is long since over. And until the user submits the page (or your Javascript initiates an Ajax request), no new request will exist.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56201
|
|
|
Your question indicates a fundamental misunderstanding regarding how JSP works and operates. Perhaps this article might be helpful.
|
 |
Rafael Andrade
Greenhorn
Joined: Aug 04, 2006
Posts: 15
|
|
You�re right. I�ll read the article. Thanks alot for the answer! And congratulations for the site, it�s the best one by far!
|
 |
 |
|
|
subject: Changing request Attribute via Javascript
|
|
|