Hi,
I have the following in my jspx file:
<jsp:scriplet>
int myvar = 2;
</jsp:scriptlet>
How can I put variable myvar into a textbox (id=myinput) value using JSTL or scriptlet (I can do this using session variable)
<input type="text" id="myinput" value="...the value of myvar..."/>
Thanks