我试图获取页面的源代码,但有些页面无法通过 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;
}
}