Uri uri = new Uri("http://www.cnsos.net/weburl/index.htm", UriKind.Absolute); HttpClient myClient = new HttpClient(); string result = await myClient.GetStringAsync(uri); await new MessageDialog(result).ShowAsync();
原文:http://www.cnblogs.com/wzwyc/p/6291926.html