How to use the QueryString in ASP
This article tells you how to pass variables to an ASP page using the QueryString, and how to access them from that page.
Have you ever seen a URL which looked like "www.example.com/page.asp?mode=1&style=red"? Well, this page is being passed variables and their values through the QueryString, here the variables "mode" and "style" are being passed, with values "1" and "red" respectively. The question mark indicates the start of the query string and the ampersand, &, symbol seperates variable=value assignments.
Continue reading "How to use the QueryString in ASP" »
