Receive text on your server using csharp .net


  //Receive Text using .net

  //When you login to your dashboard, numbers are displayed on the left

  //Each number has an input box to enter the URL of the page where you'll receive the text
  
  //This URL cannot be on your local.

  //We will make an HTTP post to the URL you enter below the number in your dashboard

  //This following code allows you to read what we send in an HTTP post

  protected void Page_Load(object sender, EventArgs e)
  {
    foreach (string s in Request.Form.Keys )
    {
      Response.Write(s.ToString() + ":" + Request.Form[s] + "");
    }
  }