Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有哪些方法可以从 ASP.NET 中的客户端 HTML 中的表单中检索提交给 Web 服务器的数据?
您还可以同时搜索 Form 和 QueryString 集合,以便无论请求方法如何都能找到数据。
value = Request("formElementID")
在 VB.NET 中
对于 POST 请求:
value = Request.Form("formElementID")
对于 GET 请求:
value = Request.QueryString("formElementID")