Go Back To Code List
[Queries]
Current Code Entry
Next
Right Arrow

URL QueryString

Article Entry Date: April 27,2022 @ 11:04:08 / Last Updated On: June 4,2025 @ 10:36:02
A URL Querystring gets a value used to display information on a page.
An example would be.
Main.asp?Type=One
We examine the Query of Type above to retrieve its Value. Once we get its value, we can determine what to do with it. Example.

Now, if you have a lot of Queries in your code, you can create a Variable that will allow for more effortless coding.

The Variable of getType can now be used in place of the request.querystring("Type").
Example from the above.