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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

passing parameters to another page

Status
Not open for further replies.

sthibodeau

Technical User
Aug 12, 2003
39
0
0
US
Ok, on my first page/form (ASP) i have a parameter and it is succesfully passing it to my second page/form (ASP) via the URL.

My question is Now how do i get that paramter in a Input Box or some sort of text box?

Please help - Thanks
 
in your text box or textfield use value=&quot;<% Request.QueryString(&quot;VariableName&quot;) %>&quot;
 
Ok that works great and actualy pulls the value, but the prolem is that i want to use that reference to delete a record, and as soon as i use that expression the input box becomes unbounded, and of course when i beind it again it lose the request query string.

Please help agin thanks, if it matters i am using GoLive 6 - Thanks
 
or use a hidden field:
<input type=&quot;hidden&quot; value=&quot;<%=Request.QueryString(&quot;VariableName&quot;)%>&quot; name=&quot;h1&quot;>

in the next page:
response.write request(&quot;h1&quot;)
ought to do it...

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top