I have very quick question. I have javascript varable and JSP
variable.
var j = "Test" ;
<%
String s = "" ; %>
I would like to assign j value to s.
I tried this
<% String s = %> j ; ( Did not work )
<% String s %> = j ; ( Did not work )
if you know hwo to do it. that would really help me. Once again,
thanks you for your help and time.