0

小さな単純な文字列を 1 つ含む Web ページを設定したいと考えています。画像も CSS も何もありません。あまり長くない単純な文字列 (最大 20 文字)。

C# フォーム アプリケーションでこの文字列をフェッチして、プログラム内のさまざまな目的に使用するための最良の方法は何ですか。たとえば、起動時にソフトウェアの最新バージョンを表示するなどです。

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 に答える