If you do a simple index into Request's items via Request[key], it looks in 4 locations. What's the order? Someone makes a guess on that page at "Cookies, ServerVariables, Form and QueryString". Does anyone know for sure? Documentation would be a bonus :)
|
2
|
|
|
|
|
|
public string this[string key] { get; } Declaring Type: System.Web.HttpRequest Assembly: System.Web, Version=2.0.0.0
|
|||
|
|
|
|
This is from an ASP site, but it still applies to ASP.NET:
|
||||
|
|
|
Just use Reflector and you can see it for yourself. The order is QueryString, Form, Cookies, then ServerVariables. |
||
|
|
