|
|
Assign ASP value to form field - ASP
|
Views : 939
|
|
Tagged in : ASP
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
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 |
|
|
|