Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

HttpWebRequest C# example

var values = new Dictionary<string, string>
  {
      { "thing1", "hello" },
      { "thing2", "world" }
  };

  var content = new FormUrlEncodedContent(values);

  var response = await client.PostAsync("http://www.example.com/recepticle.aspx", content);

  var responseString = await response.Content.ReadAsStringAsync();
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #HttpWebRequest
ADD COMMENT
Topic
Name
8+6 =