I have written a custom http handler. I have done this by writing a class which implements the IHttphandler.
I have written the following code for login: Session[\"IsLogin\"] = false; System.Configuration.Configuration config = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration(\"~\");
I am having the same issue as described in this post, Diagnosing "Request timed out" HttpExceptions. I\'ve turned on Failed Request Tracing as recommended and am working with someone at MS (
When I start my ASP.Net 4.0 web app in debug mode, I\'m getting the following exception: System.Web.HttpException occurred
Ok, so I am stumped on this issue. I have seen a lot of things that are supposed to resolve this issue, but I am not getting a resolution that can fulfill my requirements.
I look for HttpExceptions in the Application_Error sub of my global.asx Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
Here\'s my Application_OnError event sink in global.asax.vb: Sub Application_OnError(ByVal sender As Object, ByVal e A开发者_Go百科s EventArgs)