I have a webbrowser control, but when I try to load the page, it shown me a JS errors. If I click "Yes" to all errors, page loading normally and page JavaScript works fine.
I tried to set
webBrowser.ScriptErrorsSuppressed = true;
but then JavaScript on the page stop working (as I understood, this call is equals to clicking "No" on all JavaScript errors).
How can I fix this? What shoud I do not to display the page errors and confirm all of them to continues page script ignoring them?