0

我想建立一个网页,上面有一个简单的小字符串。没有图像,没有 CSS,没有其他任何东西。只是一个不是很长的普通字符串(最多 20 个字符)。

使用 C# Form 应用程序获取此字符串以在程序中用于各种不同目的的最佳方法是什么,例如在启动时向人们展示软件的最新版本是什么。

4

2 回答 2

1

我会像这样使用 System.Net.WebClient 自己:

using (var client = new WebClient())
{
    string result = client.DownloadString("http://www.test.com");
    // TODO: do something with the downloaded result from the remote
}
于 2013-02-26T11:31:00.097 回答
0

尝试使用System.Net.WebClient

        string remoteUri = "http://www.myserver.com/mypage.aspx";
        WebClient myWebClient = new WebClient();
        string version = myWebClient.DownloadString(remoteUri);
于 2013-02-26T11:25:33.070 回答