Assign ASP value to form field
by Nirmala[ Edit ] 2009-08-19 16:09:44
Hi...
If you want to assign asp value to any form field use the below procedure.
<%=variablename%>
Example:
<%
Dim x
x=10 //assign this value to textbox
%>
<input type=text value="<%=x%>">