Wrox Home  
Search P2P Archive for: Go

  Return to Index  

access_asp thread: Passing values through querystring (ASP)


Message #1 by "Alemayehu Lema" <alemayehu@e...> on Tue, 28 May 2002 16:04:31
Hi,

I have a problem of transferring more than one values using a querystring.
e.g. <a href="test.asp?name1=value1&name2=value2"> Click here </a>
The problem is name1 takes all values on the extra path info after "?" 
character. I would like name1 to take value1 and name2 to take value2.

Is any one help me solve this problem?

Thank you
Message #2 by btodd@a... on Wed, 29 May 2002 00:19:48
How are you asking for the query string info?

request.querystring("name1") should give you only the value of name1...

  Return to Index