Tagged Questions

19
votes
6answers
19k views

Catching “Maximum request length exceeded”

I'm writing an upload function, and have problems catching "System.Web.HttpException: Maximum request length exceeded" with files larger than the specified max size in httpRuntimein web.config (max ...
18
votes
6answers
10k views

Diagnosing “Request timed out” HttpExceptions

Here on StackOverflow, we're seeing a few "Request timed out" exceptions every day. The facts: Request timeout is the default 90 seconds Occurs only on POSTs Data posted is text, usually small ...
14
votes
8answers
19k views

Why do I get “Cannot redirect after HTTP headers have been sent” when I call Response.Redirect()?

When I call Response.Redirect(someUrl) I get an HttpException: "Cannot redirect after HTTP headers have been sent". Why do I get this? And how can I fix this issue?
2
votes
2answers
329 views

ASP.Net debug directory monitoring exception

When I start my ASP.Net 4.0 web app in debug mode, I'm getting the following exception: System.Web.HttpException occurred Message=Invalid file name for file monitoring: ...
1
vote
1answer
200 views

httpException 11481611 caused from bad url… how to fix?

In my event logs I am have an warning appear: Log Name: Application Source: ASP.NET 4.0.30319.0 Date: 10/24/2011 11:14:18 PM Event ID: 1309 Task Category: Web ...
1
vote
3answers
1k views

Throwing an HttpException always sends back HTTP 500 error?

I'm trying to throw an HTTP 403 error code back at the client. I've read that HttpException is the cleanest way to accomplish this, but it's not working for me. I throw the exception from within a ...
1
vote
3answers
764 views

System.Web.HttpException: Unable to validate data - after publishing site

I have written the following code for login: Session["IsLogin"] = false; System.Configuration.Configuration config = ...
1
vote
1answer
5k views

How to troubleshoot “System.Web.HttpException (0x80004005): File does not exist”?

Apologies if this has already been answered on this site, I searched but did not find this exact scenario. I'm adding log4net to a WCF service. I added a handler in the Application_Error event, and ...
1
vote
1answer
354 views

“Request is not available in this context” on Nested User Control

I have three objects: A Page which contains A User Control (A) which contains Another User Control (B) The scenario is an event in User Control A gets called, the Request object is still ...
1
vote
1answer
587 views

“Unable to validate data” HttpException from my .net 2.0 application

I am getting this exception from my ASP .net application running in a webfarm. Exception Type: System.Web.HttpException Exception Message: Unable to validate data. ---- Stack Trace ---- ...
0
votes
1answer
956 views

The handle is invalid. (Exception from HRESULT: 0x80070006 (E_HANDLE))

hi i have deploy my website on a shared hosting onn which ii7 is running, my web application i build in .net framwork 3.5, i have a download button on which i run this code to download selected file ...
0
votes
3answers
2k views

Server cannot modify cookies after HTTP headers have been sent

I am creating a web application in C#. When my page loads I fire an asynchronous thread to process some data. Part of this processing is the updating of a cookie. However when I save the cookie to ...
0
votes
0answers
327 views

Castle Windsor PerWebRequestLifestyleModule + IIS7.5 + .Net 4.0 == HttpException?

We have a large website running on both a custom Mvc framework (based on rails) and Asp.Net Mvc. We are using Castle Windsor for our IoC container to power both our custom and Asp.Net Mvc frameworks. ...
0
votes
3answers
969 views

Server.Transfer(“error_404.aspx”) in Application_Error returns a blank page

I look for HttpExceptions in the Application_Error sub of my global.asx Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs) Dim ex As Exception = ...
0
votes
1answer
700 views

Not getting redirection to custom error page using custom errors - ASP.Net

Here's my Application_OnError event sink in global.asax.vb: Sub Application_OnError(ByVal sender As Object, ByVal e As EventArgs) Dim innerMostException As Exception = ...
0
votes
2answers
388 views

Respone.Redirect causes error once in a while, but i can't reproduce it

I have a website that will log the user out after a while of inactivity. This is done by the following code: window.location = "./logout.aspx?timeout=true"; But three times in the last couple of ...
0
votes
2answers
907 views

How do you test error handling involving “remote host” errors with ASP.NET development server?

We have an ASP.NET website in production that generates a report and sends it to the user's browser as a PDF file. Our error reporting is showing that we are getting a lot of this exception: ...