如何将字符串发布到URL

时间:2014-03-18 08:41:59

标签: c# windows-phone-8

我有一个字符串:<0>book1<0>book2<0><0>book3<1>Version<1>,我有一个网址:abc.com。我想从Windows Phone向URL发送一个字符串。

我在谷歌搜索过,但我发现没有任何用处,因为结果是针对网页(.aspx),其中,我正在使用C#类(.cs)。我想创建一个这样的方法:

public void SendPost(string url, string postData)
{
...        
}

1 个答案:

答案 0 :(得分:0)

使用WebClient

public void SendPost(string url, string postData)
  {
      WebClient client = new WebClient();
      client.UploadStringCompleted += client_UploadStringCompleted;
      client.UploadStringAsync(new Uri(url), postData);

  }

void client_UploadStringCompleted(object sender, UploadStringCompletedEventArgs e)
{
    if (e.Error != null)
    {
        // error in uploading
    }
}