-1

我想使用 PHP 作为后端的远程 MySQL 数据库在 WP7 应用程序中创建一个简单的登录功能。我从未在 C# 中使用过它,所以我不知道该怎么做。

4

1 回答 1

2

您可以使用WebClientHttpWebRequest类发出 Web 请求并获取响应。

这是有关如何发出请求并获得响应的示例代码

WebClient client = new WebClient();
client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
client.DownloadStringAsync(new Uri("http://someurl", UriKind.Absolute));

异步响应处理程序在这里

void client_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
    var response= e.Result; // Response obtained from the web service  
}

上面的示例适用于任何 Web 服务(可能是PHP或 jsp 或 asp 等)。

您需要做的就是发出正确的请求并处理响应

于 2012-06-25T09:48:20.887 回答