Assign ASP value to form field - ASP Views : 939
Tagged in : ASP
1 0
Send mail
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%>">

By Nirmala, On - 2009-08-19



    Login to add Comments .