Can't extract variables [Resolved]
http://mysite/default.asp?uid=Supremus&xxx=999&yyy=999
When I click on the above link, the program goes to the right page, but how do I extract the variables xxx and yyy (they are dimmed elsewhere)??
If I try to display them with
xxx = <%xxx%><br>
xxx = <%=xxx%><br>
I get
xxx =
xxx =
Re: Can't extract variables
Quote:
Originally Posted by Supremus
http://mysite/default.asp?uid=Supremus&xxx=999&yyy=999
When I click on the above link, the program goes to the right page, but how do I extract the variables xxx and yyy (they are dimmed elsewhere)??
If I try to display them with
xxx = <%xxx%><br>
xxx = <%=xxx%><br>
I get
xxx =
xxx =
These values are contained in the querystring variables.
This is a collection of key/value pairs.
xxx is in Request.Querystring("xxx")
Re: Can't extract variables
Oh. I am starting to understand now. Thanks.