ASP.Net 是否有像 PHP 一样的 Post 和 Get 数组
我正在使用 ASP.NET。我想知道是否有类似的方法来访问 Post
和 Get
数组中的数据,就像在 PHP 中一样。
I am using asp.net. I am wondering if there is an equivalent way to access data in the Post
and Get
arrays like you do in PHP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Request.QueryString 集合进行 GET 操作,使用 Request.Form 进行 POST 操作:
http://msdn.microsoft.com/en-us/library/system.web.httprequest.querystring.aspx
http://msdn.microsoft.com/en-us/library /system.web.httprequest.form.aspx
You can use the Request.QueryString Collection for GET and Request.Form for POST:
http://msdn.microsoft.com/en-us/library/system.web.httprequest.querystring.aspx
http://msdn.microsoft.com/en-us/library/system.web.httprequest.form.aspx