| Author |
how can i put java script value into jsp variable?
|
eric lee
Ranch Hand
Joined: Nov 04, 2002
Posts: 86
|
|
dear sir: i know how to put jsp value into java script variable but how to put java script vaule into jsp variable? thanks; <% String s="hello",b=""; %> <script language="javascript"> var name="<%=s%>"; <%b%>=name;<=== is this correct? </script>
|
 |
Kj Reddy
Ranch Hand
Joined: Sep 20, 2003
Posts: 1697
|
|
YOu can put JSP value into JavaScript variable, but reverse is not possible. Your code dont work.
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
The JSP variables exist when the JSP is being processed on the server. At that point the Javascript variables are just markup. Later, when the output of the JSP is processed on the client, the Javascript variables exist but the JSP variables are long gone. So you can't do that. I would attempt to answer the real question behind your question but I can't tell what it is.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56191
|
|
|
Please read this article for information on the life-cycle of a JSP and why what you are asking is not possible.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: how can i put java script value into jsp variable?
|
|
|