When a Silverlight project throws an exception it ends up raising a "script error" dialog that needs to be acknowledged before proceeding. We're using Silverlight for part of the content on a HTML page, but don't want the error dialog to appear if that content is unavailable. Instead we are already writing the script error to a log and consider that sufficient.
Is it possible to prevent that dialog appearing on an uncaught exception? Is the only solution to catch and handle all exceptions? I have tried removing the "onError" parameter with its value of "onSilverlightError" but that made no difference.