Ok folks, I know this question may sound stupid, or may even be easy for some of you, but I'm not familiar with the method.
I want to be able to request the string from a query string. Not the actual value, but the string itself.
for instance:
home.asp?n=on&b=on
I want the n and b part. I want to know which items are being passed, not the value.
The reason I am doing this is a print function. If the user checks a box for printing it is usually displayed as (=on) to the page its posting to.
So in essense, I want to be able to print a record where the box is checked (or by the id somehow)
so my logic is:
the id's will be the checkbox names (5=on&6=off&12=on)
so I will know to write a string for an IN CLAUSE in SQL
If 5 = on Then
variable = variable & (QueryString) & ","
I'd use the post method, but the list is dynamic, so I dont know what the query string is going to be.
I hope this makes some sort of sense.
Thanks