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();