Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
htmlCode = client.DownloadString("http: //abc.com");
実行すると、htmlには来このようなUnicode文字が含まれます。正しく変換してからテキストボックスに表示するにはどうすればよいですか?
使用してみてください:
WebClient client = new WebClient(); TextBox1.Text = HttpUtility.HtmlDecode(client.DownloadString("http://abc.com"));