所以我想完全从代码发布到同一域内的表单。我想我拥有我需要的一切,除了如何包含表单数据。我需要包含的值来自隐藏字段和输入字段,我们称之为:
<input type="text" name="login" id="login"/>
<input type="password" name="p" id="p"/>
<input type = hidden name="a" id="a"/>
到目前为止我所拥有的是
WebRequest req = WebRequest.Create("http://www.blah.com/form.aspx")
req.ContentType = "application/x-www-form-urlencoded"
req.Method = "POST"
如何在请求中包含这三个输入字段的值?