■ WebBrowser 클래스의 DocumentText 속성을 사용해 HTML 문자열을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
using System.Windows.Forms; ... private WebBrowser webBrowser; ... string html = @" <html> <head> <meta http-equiv=""Content-Type"" content=""text/html; charset=utf-8"" /> <title>테스트 페이지</title> </head> <body> <p style=""color:#0000FF"">테스트</p> </body> </html> "; this.webBrowser.DocumentText = html; |