httpwebrequest で adfoc.us/504....9 リンクを開こうとしています。ただし、HTML コードは表示されません。
try
{
req = WebRequest.Create(txtLink.Text);
WebProxy wp = new WebProxy(proxies[0]);
//req.Proxy = wp;
WebResponse wr = req.GetResponse();
StreamReader sr = new StreamReader(wr.GetResponseStream());
string content = sr.ReadToEnd();
MessageBox.Show(content);
sr.Close();
}
catch (UriFormatException)
{
MessageBox.Show("URL should be in this format:\nhttp://www.google.com");
return;
}
[google.com][1] のような Web サイトを使用すると、Google html ソースを含む mbox を取得できます。adfoc.us/50....
リンクを使用すると、空の文字列が得られます。
どこに問題があるのでしょうか? ありがとうございました。
編集: GeckoFx コンポーネントをインストールすることで問題を解決しました。