所以我想完全从代码发布到同一域中的表单。我想我有我需要的一切,除了如何包含表格数据。我需要包含的值来自隐藏字段和输入字段,我们称之为:
<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"
如何在请求中包含这三个输入字段的值?
答案 0 :(得分:3)
NameValueCollection nv = new NameValueCollection();
nv.Add("login", "xxx");
nv.Add("p", "yyy");
nv.Add("a", "zzz");
WebClient wc = new WebClient();
byte[] ret = wc.UploadValues(""http://www.blah.com/form.aspx", nv);
答案 1 :(得分:0)
如上面评论中提供的链接所示,如果您使用的是WebRequest而不是WebClient,可能要做的事情是建立一串由&amp;分隔的键值对,其值为url编码:
foreach(KeyValuePair<string, string> pair in items)
{
StringBuilder postData = new StringBuilder();
if (postData .Length!=0)
{
postData .Append("&");
}
postData .Append(pair.Key);
postData .Append("=");
postData .Append(System.Web.HttpUtility.UrlEncode(pair.Value));
}
当您发送请求时,使用此字符串设置ContentLength并将其发送到RequestStream:
request.ContentLength = postData.Length;
using(Stream writeStream = request.GetRequestStream())
{
UTF8Encoding encoding = new UTF8Encoding();
byte[] bytes = encoding.GetBytes(postData);
writeStream.Write(bytes, 0, bytes.Length);
}
您可以根据需要提炼功能,因此无需将其拆分为多种方法。