■ WebBrowser 클래스에서 웹 사이트 조회시 발생하는 스크립트 오류를 억제하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using System.Windows.Forms; WebBrowser webBrowser = new WebBrowser(); ... webBrowser.ScriptErrorsSuppressed = true; |
■ WebBrowser 클래스에서 웹 사이트 조회시 발생하는 스크립트 오류를 억제하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using System.Windows.Forms; WebBrowser webBrowser = new WebBrowser(); ... webBrowser.ScriptErrorsSuppressed = true; |