を利用して、テキストボックスごとHttpWebRequest
にを設定できます。string
var response = SendNamedStrings("http://example.com", new Dictionary<string,string>{
{ "textBox1", textBox1.Text },
{ "textBox2", textBox2.Text },
{ "textBox3", textBox3.Text },
{ "textBox4", textBox4.Text }
} );
どこSendNamedStrings
にあるのでしょうか
static WebResponse SendNamedStrings(string url, Dictionary<string, string> namedStrings)
{
string postData = "?" + string.Join("&", namedStrings.Select(pair => string.Format("{0}={1}", pair.Key, pair.Value)));
WebRequest request = WebRequest.Create(url);
request.Method = "POST";
byte[] byteArray = Encoding.UTF8.GetBytes(postData);
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = byteArray.Length;
Stream dataStream = request.GetRequestStream();
dataStream.Write(byteArray, 0, byteArray.Length);
dataStream.Close();
return request.GetResponse();
}
この質問は、スタックオーバーフローの前に多くの方法で尋ねられたことに注意してください(ここにいくつかあります):
ログインページでHttpWebRequestを使用してデータを送信する
WebRequestにパラメータを追加する方法は?
C#でPOSTデータを送信する