Maybe the OP was referring to the default order of retrieval ?
When you do a call to the default Request collection,
each of the sub collections are searched in the following order:
1. QueryString
2. Form
3. Cookies
4. ClientCertificates
5. ServerVariables
The process stops when the first match is found.
Unfortunately, if there's same-name items in two or more sub collections,
you aren't guaranteed to receive the data you're looking for.
That's why you shouldn't use : Request("name")
You should use Request.Form("name") or Request.Cookies("name")
or Request.QueryString("name"), etc., always specifying the sub collection
you want to retrieve data from.
Juan T. Llibre, asp.net MVP
asp.net faq :
http://asp.net.do/faq/
foros de asp.net, en español :
http://asp.net.do/foros/
===================================