Click to See Complete Forum and Search --> : ASP help


mhalvors
04-16-2006, 06:16 PM
I want to have some asp going on on my site, and before I pay for a domain and whatnot I want to know if I have everything right. To tell you the truth I kind of threw this together from different sources so I could be completely wrong. This is what Im tryin to run

from the link:
http://www.mysite.com/signup.html?ref=hank

I want to use this
<%=Request.QueryString("ref")%>

to get that info and put it in a form to submit.

Please help me because as you can see I need it.

Ubik
04-16-2006, 07:35 PM
<form>
<input type="text" value="<%=Request.QueryString("ref")%>" />
</form>

That should do it.