35

我有一个简单的 html 文件,例如

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

编辑:我可能对这个问题还不够清楚

我想编写 C# 代码,以与将上述 html 粘贴到文件中的方式完全相同的方式提交此表单,用 IE 打开它并用浏览器提交它。

4

6 回答 6

31

这是我最近在接收 GET 响应的网关 POST 事务中使用的示例脚本。您是否在自定义 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;
   } 
于 2009-08-13T19:37:46.833 回答
13

您的 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 页面。

于 2009-08-13T19:16:50.487 回答
5

您可以使用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>

*/
于 2009-08-13T19:11:19.550 回答
2
Response.Write("<script> try {this.submit();} catch(e){} </script>");
于 2009-11-19T08:50:54.903 回答
2

我需要有一个按钮处理程序,它可以在客户端浏览器中创建一个表单发布到另一个应用程序。我遇到了这个问题,但没有看到适合我的情况的答案。这就是我想出的:

      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);
        }
于 2016-06-10T21:48:44.987 回答
1

我在 MVC 中遇到了类似的问题(这导致我遇到了这个问题)。

我收到了来自 WebClient.UploadValues() 请求的字符串响应形式的 FORM,然后我必须提交它 - 所以我不能使用第二个 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)

我希望这可以帮助任何发现自己处于相同情况的人。

于 2015-05-28T09:18:19.207 回答