I am trying to put 2 items into a querystring and then extract them.
This is the code I am using.
Is it possible and if so could you let me know how to do it.
This has become quite frustrating.
Thanks in advance for any help.
___________________
Manic
This is the code I am using.
Code:
To Post
"Link.asp?Branch=<%=R%> Dept=<%=S%>"
To retrive
R = CStr(Request.QueryString("Branch"))
S = CStr(Request.QueryString("Dept"))
To Display
strSQL = "SELECT * FROM PC WHERE Branch='" & R & "' and Dept='" & S & "' ORDER BY IP, User"
Is it possible and if so could you let me know how to do it.
This has become quite frustrating.
Thanks in advance for any help.
___________________
Manic