Client side errors which occur in JavaScript can really cause a distraction and irritation for your end users, and with the plethora of different browsers and operating system combinations it can be very difficult to totally test your applications.
To help discover and resolve JavaScript issues we’ve implemented an end to end JavaScript error handler into Exceptioneer.
Now every time there’s a client side exception on your site, it can be reported back to Exceptioneer in just the same way your server side exceptions are handled giving you a clean and useful report as so: -
We give you the information you need to sort out the client side problems your sites might face as well as the server side issues including the Browser, version, operating system and location of the errors.
What’s more it’s a doddle to implement on your ASP.NET sites. The first thing you need to do is wire up the HttpHandler in your web.config file as so: -
<add path="ExceptioneerJavaScript.axd" verb="GET,POST" type="Exceptioneer.WebClient.JavaScriptHandler, Exceptioneer.WebClient" />
Then Just add a Script to your pages which references the handler passing in the right query string value (as shown below).
<script src="/ExceptioneerJavaScript.axd?Reporter=true" language="javascript"></script>
Then, whenever our JavaScript error handler detects and catches an error, details will be packaged up and sent back to the Exceptioneer service where you can manage them.
So why not download the latest Web Client and wire it up for your JavaScript errors too?
Read All & Comment →
2 Comments