誰かが私に何が起こるか説明できますか?
このURLコードを使用すると、Label1ポストリモートページが私のページ内で機能します
string url = "http://ireland.angloinfo.com/";
しかし、これはLabel1が空ではありません
string url = "http://cyprus.angloinfo.com/";
string html = string.Empty;
HttpWebRequest myHttpWebRequest = (HttpWebRequest)HttpWebRequest.Create(url);
HttpWebResponse myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse();
StreamReader myStreamReader = new StreamReader(myHttpWebResponse.GetResponseStream());
html = myStreamReader.ReadToEnd();
Label1.Text = html;
何が悪かったのか ?