Hii Akansha!!
Hope this will help you
********demo.asp*********
<% firstname="akash" %>
<input type=text name="fname" value="<%=firstname%>">
When you click on the submit button and want to access it in asp page then
*******************submit.asp************
<%
response.write(request("fname"))
firstname=request("fname")
%>
Cheers :)
vinod
|