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

Nonresponding Querystring

Status
Not open for further replies.

PenguinHead

Programmer
Jan 5, 2007
18
US
I'm not totally new to ASP and have passed and recieved values via Querystring many times, but this time I can't get it to work. I can see the value I want in the address bar so I know it is being passed but for some reason I cannot get it to display using a Response.Write.

Section of the URL I need:
...detail.asp?&semail=006671479...

Code that SHOULD display it:
<%Response.Write(Request.Querystring("semail"))%>

Any idea why this wouldn't work?
 
You don't need the &, that is only AFTER the first variable in the query string


Code:
detail.asp?semail=006671479

<.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top