HttpRequest 索引器的搜索顺序
如果您通过 Request[key] 对请求的项目进行简单索引,它将在 4 个地点。有什么顺序吗?有人在该页面上猜测“Cookies、ServerVariables、Form 和 QueryString”。有谁确切知道吗?文档将是一个额外的好处:)
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 :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需使用Reflector,您就可以亲自看到它。顺序是 QueryString、Form、Cookies,然后是 ServerVariables。
Just use Reflector and you can see it for yourself. The order is QueryString, Form, Cookies, then ServerVariables.
这是来自 ASP 站点,但它仍然适用于 ASP。网:
This is from an ASP site, but it still applies to ASP.NET: