web-dev-qa-db-ja.com

C#を使用してhttpフォームを送信する方法

次のような単純なhtmlファイルがあります

<form action="http://www.someurl.com/page.php" method="POST">
   <input type="text" name="test"><br/>
   <input type="submit" name="submit">
</form>

編集:私は質問で十分に明確ではなかったかもしれません

上記のhtmlをファイルに貼り付け、IEで開いてブラウザーで送信した場合に発生するのとまったく同じ方法でこのフォームを送信するC#コードを記述したいと思います。

30
JC.

ゲートウェイで最近使用したサンプルスクリプトは次のとおりです。POST GET応答を受信するトランザクション。これをカスタムC#フォームで使用していますか?目的が何であれ、文字列フィールド(ユーザー名、パスワードなど)をフォームのパラメータとともに使用します。

private String readHtmlPage(string url)
   {

    //setup some variables

    String username  = "demo";
    String password  = "password";
    String firstname = "John";
    String lastname  = "Smith";

    //setup some variables end

      String result = "";
      String strPost = "username="+username+"&password="+password+"&firstname="+firstname+"&lastname="+lastname;
      StreamWriter myWriter = null;

      HttpWebRequest objRequest = (HttpWebRequest)WebRequest.Create(url);
      objRequest.Method = "POST";
      objRequest.ContentLength = strPost.Length;
      objRequest.ContentType = "application/x-www-form-urlencoded";

      try
      {
         myWriter = new StreamWriter(objRequest.GetRequestStream());
         myWriter.Write(strPost);
      }
      catch (Exception e) 
      {
         return e.Message;
      }
      finally {
         myWriter.Close();
      }

      HttpWebResponse objResponse = (HttpWebResponse)objRequest.GetResponse();
      using (StreamReader sr = 
         new StreamReader(objResponse.GetResponseStream()) )
      {
         result = sr.ReadToEnd();

         // Close and clean up the StreamReader
         sr.Close();
      }
      return result;
   } 
30
shanabus

HTMLファイルはC#と直接やり取りしませんが、C#を記述して、あたかもHTMLファイルであるかのように動作させることができます。

例:System.Net.WebClientと呼ばれる単純なメソッドを持つクラスがあります。

using System.Net;
using System.Collections.Specialized;

...
using(WebClient client = new WebClient()) {

    NameValueCollection vals = new NameValueCollection();
    vals.Add("test", "test string");
    client.UploadValues("http://www.someurl.com/page.php", vals);
}

その他のドキュメントと機能については、 MSDNページ を参照してください

12

HttpWebRequest クラスを使用してこれを行うことができます。

ここ

using System;
using System.Net;
using System.Text;
using System.IO;


    public class Test
    {
        // Specify the URL to receive the request.
        public static void Main (string[] args)
        {
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create (args[0]);

            // Set some reasonable limits on resources used by this request
            request.MaximumAutomaticRedirections = 4;
            request.MaximumResponseHeadersLength = 4;
            // Set credentials to use for this request.
            request.Credentials = CredentialCache.DefaultCredentials;
            HttpWebResponse response = (HttpWebResponse)request.GetResponse ();

            Console.WriteLine ("Content length is {0}", response.ContentLength);
            Console.WriteLine ("Content type is {0}", response.ContentType);

            // Get the stream associated with the response.
            Stream receiveStream = response.GetResponseStream ();

            // Pipes the stream to a higher level stream reader with the required encoding format. 
            StreamReader readStream = new StreamReader (receiveStream, Encoding.UTF8);

            Console.WriteLine ("Response stream received.");
            Console.WriteLine (readStream.ReadToEnd ());
            response.Close ();
            readStream.Close ();
        }
    }

/*
The output from this example will vary depending on the value passed into Main 
but will be similar to the following:

Content length is 1542
Content type is text/html; charset=utf-8
Response stream received.
<html>
...
</html>

*/
4
Sklivvz

クライアントのブラウザー内の別のアプリケーションにフォームポストを作成するボタンハンドラーが必要でした。この質問にたどり着きましたが、私のシナリオに合った答えが見つかりませんでした。これは私が思いついたものです:

      protected void Button1_Click(object sender, EventArgs e)
        {

            var formPostText = @"<html><body><div>
<form method=""POST"" action=""OtherLogin.aspx"" name=""frm2Post"">
  <input type=""hidden"" name=""field1"" value=""" + TextBox1.Text + @""" /> 
  <input type=""hidden"" name=""field2"" value=""" + TextBox2.Text + @""" /> 
</form></div><script type=""text/javascript"">document.frm2Post.submit();</script></body></html>
";
            Response.Write(formPostText);
        }
3
JDPeckham
Response.Write("<script> try {this.submit();} catch(e){} </script>");
2
DRiVe

MVCでも同様の問題がありました(この問題につながりました)。

WebClient.UploadValues()リクエストから文字列レスポンスとしてFORMを受信して​​います。それを送信する必要があるため、2番目のWebClientまたはHttpWebRequestを使用できません。このリクエストは文字列を返しました。

using (WebClient client = new WebClient())
  {
    byte[] response = client.UploadValues(urlToCall, "POST", new NameValueCollection()
    {
        { "test", "value123" }
    });

    result = System.Text.Encoding.UTF8.GetString(response);
  }

OPを解決するために使用できる私のソリューションは、Javascript自動送信をコードの末尾に追加し、@ Html.Raw()を使用してRazorページにレンダリングすることです。

result += "<script>self.document.forms[0].submit()</script>";
someModel.rawHTML = result;
return View(someModel);

かみそりコード:

@model SomeModel

@{
    Layout = null;
}

@Html.Raw(@Model.rawHTML)

これが同じ状況にいる人に役立つことを願っています。

1
kangacHASHam