How to turn off javascript in a WPF Frame element. It pops up with a:
“Script Error. An error has occurred in the script on this page”
frame1.Source = new System.Uri("http://www.stuff.co.nz");

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your version of .NET for this application supports it, have you tried using the WebBrowser control?
http://msdn.microsoft.com/en-us/library/system.windows.controls.webbrowser.aspx
Update: I found a blog post that has a fix for this, although it doesn’t do exactly what you wanted. It uses javascript script injection to disable javascript errors. I have not tested this.
http://www.codewrecks.com/blog/index.php/2010/08/31/disable-javascript-error-in-wpf-webbrowser-control/