Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Urgent! How can I save results of a variable to field on webpage??

Status
Not open for further replies.

fogal

Technical User
Aug 20, 2001
87
US
new to fp.
I am able to extract data from url using request.querystring and have it as a variable. I then want to save this info to a field so I can send it back to my db later. ie save it to a text box or hidden field.

Please help???
 
sommat like

Code:
<%
If Len(Request.Querystring("Whatever"))>0 Then
%>
<input type="hidden" name="myVar" value="<%=Request.Querystring("Whatever"))%>">
<%
End If
%>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top