When you're retrieving information from the Request collection, you probably do it like this:
strTemp = Request.Form("txtName")
However, you don't have to use the full name of the collection you want to look at. You could rewrite this line like so:
strTemp = Request("txtName")
ASP will automatically search all of the data collections for the key you selected. The collections will be searched in the following order:
QueryString
Form
Cookies
ClientCertificate
ServerVariables