从网页中提取字符串到c#表单应用程序

本文关键字:表单 应用程序 字符串 网页 提取 | 更新日期: 2023-09-27 18:01:15

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

在c# Form应用程序中获取这个字符串的最佳方法是什么,以便在程序中使用它来实现各种不同的目的,比如在启动软件时向人们展示软件的最新版本

从网页中提取字符串到c#表单应用程序

我会像这样使用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
}

尝试使用System.Net.WebClient:

        string remoteUri = "http://www.myserver.com/mypage.aspx";
        WebClient myWebClient = new WebClient();
        string version = myWebClient.DownloadString(remoteUri);