access_asp thread: Passing values through querystring (ASP)
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
How are you asking for the query string info?
request.querystring("name1") should give you only the value of name1...
|





