0

我试图获取页面的源代码,但有些页面无法通过 C# 代码获取源代码,我正在使用

这是我的代码

      private void button1_Click(object sender, EventArgs e)
    {
        using (var client = new WebClient())
        {
            string html = client.DownloadString("http://www.acusports.com/roster.aspx?roster=154&path=baseball");
            html = textBox1.Text;
        }
    }
4

2 回答 2

1

切换以下语句时会发生什么:

html = textBox1.Text;

对此:

textBox1.Text = html;

在您的代码中,您将html字符串设置为您检索到的任何内容,然后您立即用textBox1.Text.

于 2012-11-03T19:30:53.517 回答
0

你不想写:

textBox1.Text = html; 
于 2012-11-03T19:29:15.947 回答