服务器变量和 POST 数据
我有一段跟踪代码,用于捕获 REMOTE_HOST
、SERVER
、REQUEST_METHOD
、SCRIPT_NAME
和 QUERY_STRING
。它从 ServerVariables
获取这些内容,并按用户和 IP 将它们保存在数据库中。
在 ASP.NET 中获取发回 URL 的确切内容的最佳方法是什么?有HTTP_POST
吗?我宁愿不抓住一些东西然后必须解析它。
I've got a piece of tracking code which is capturing REMOTE_HOST
, SERVER
, REQUEST_METHOD
, SCRIPT_NAME
and QUERY_STRING
. It grabs these from ServerVariables
and sticks them in a database by user and IP.
What is the best way to pick up the exact contents of what was posted back to a URL in ASP.NET? Is there an HTTP_POST
? I'd rather not grab something and then have to parse it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,你正在谈论类似 Request.Form 集合的东西。
它是一个包含所有 POST 数据的 NameValueCollection 对象。
编辑:
更多信息在这里:http://msdn.microsoft.com/en-我们/library/ms525985.aspx
If I understand you correctly, you are talking about something like the Request.Form collection.
It's a NameValueCollection object with all the POST-ed data.
Edit:
More information here: http://msdn.microsoft.com/en-us/library/ms525985.aspx