View Single Post
  #2 (permalink)  
Old 07-22-03, 04:05 PM
Shane Shane is offline
Coding Addict
 
Join Date: Jun 2003
Location: Maryland, US
Posts: 268
Thanks: 0
Thanked 0 Times in 0 Posts
If your address looks like this...

Page.asp?var1=hi&var2=my&var3=name

Code:
Request.QueryString("var1") will return "hi"

Request.QueryString("var2") will return "my"

Request.QueryString("var3") will return "name"
__________________
Shane Bauer
Microsoft Certified Professional (MCP) - ASP.NET
ASP/ASP.net, C#, VB/VB.NET, PHP, Perl, SQL
Reply With Quote