リモート Web サイトには、フォームに入力値を入力し、ボタンをクリックして結果を出力フォームに表示できるページがあります。必要な入力フォームを入力してページにリクエストを送信し、送信して、出力フォームが入力された結果ページを取得したいと考えています。
同様のトピックを持つすべてのスレッドは、次のようなコード サンプルを提供します。
// Create a request using a URL that can receive a post.
WebRequest request = WebRequest.Create("http://www.site.com");
// Set the Method property of the request to POST.
request.Method = "POST";
// Create POST data and convert it to a byte array.
string postData = string.Format("inputParam=value");
byte[] byteArray = Encoding.UTF8.GetBytes(postData);
// Set the ContentType property of the WebRequest.
request.ContentType = "application/x-www-form-urlencoded";
// Set the ContentLength property of the WebRequest.
request.ContentLength = byteArray.Length;
// Get the request stream.
Stream dataStream = request.GetRequestStream();
// Write the data to the request stream.
dataStream.Write(byteArray, 0, byteArray.Length);
// Close the Stream object.
dataStream.Close();
// Get the response.
WebResponse response = request.GetResponse();
// Get the stream containing content returned by the server.
dataStream = response.GetResponseStream();
response.Close();
入力フォームが入力されたページを返しますが、コミットボタンのクリックを行わないように、出力フィールドはまだ空白です。
C# コードからコミットして、出力データを含む html ドキュメントを受け取るにはどうすればよいですか?