I have seen a few ways to detect if javascript is enabled. I have a unique situation. The Global.asax handles all thrown errors
protected void Application_Error(Object sender, EventArgs e)
{
//email development team
}
Recently, I have had issues with people disabled javascript on their machines. These are corporate machines and they are not allowed to do this. I could add some javascript detection to the master page, but I dont know how I can get this into the "catch all" method above.
What can I do to detect if javascript is enabled on the client in this scenerio?
<noscript>etc.<noscript>?