-1
htmlCode = client.DownloadString("http: //abc.com");

执行时,html 有来这等 unicode 字符。如何正确转换它然后显示在文本框中?

4

1 回答 1

1

尝试使用:

WebClient client = new WebClient();
TextBox1.Text = HttpUtility.HtmlDecode(client.DownloadString("http://abc.com"));
于 2013-03-21T22:13:29.833 回答