Is it possible to do the following? If so can someone tell me the correct syntax...
I'm trying to loop through both collections together. The code in the loop constructs a SQL query. The existing code just loops through the FORM collection and I would like to modify it so it includes the QueryString collection as well.
I could do this with 2 separate loops but it means doing a lot of work rewriting the code in the loop.
Tony
________________________________________________________________________________
Code:
For Each item in Request.Form AND Request.QueryString
Next
I could do this with 2 separate loops but it means doing a lot of work rewriting the code in the loop.
Tony
________________________________________________________________________________