We just enabled Azure Application Insights for our ASP.Net web application. The site is hosted through Windows Server 2012 VM on IIS 8 in Azure. We enabled client side telemetry to detect browser errors on the client side. We've seen a bunch of these errors pop up:
"Invalid character"
"Invalid character at window.onerror"
Call Stack:
window.onerror@https://www.mywebsite.com/login/:79:32
Our website doesn't get a ton of traffic but this error has been recorded over 400 times in the last 24 hours.
The last two characters :79:32
vary a bit between errors but they always end in :32
. I'm guessing these are ASCII characters, but I do not know why these errors showing up. Also, the URL path isn't always the same which means it is happening on more than just our 'login' page.
Azure Insights DOES indicate that ALL clients experiencing this error are using Internet Explorer 11.
I verified that our web application doesn't call window.onerror
anywhere.
So my question is, should I be concerned about this error? Is it some kind of compatibility with IE11?