How to POST a FORM from HTML to ASPX page

前端 未结 8 1609
你的背包
你的背包 2020-11-30 03:36

How do I post a form from an HTML page to and ASPX page (2.0) and be able to read the values?

I currently have an ASP.NET site using the Membership provider and ever

8条回答
  •  -上瘾入骨i
    2020-11-30 04:11

    The Request.Form.Keys collection will be empty if none of your html inputs have NAMEs. It's easy to forget to put them there after you've been doing .NET for a while. Just name them and you'll be good to go.

提交回复
热议问题