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