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 ...
2
votes
3answers
480 views

How to catch a specific HttpException (#0x80072746) in an IHttpHandler

It appears that this HttpException (0x80072746 - The remote host closed the connection) can be thrown if, for example, the user closes the window whilst we are transmitting a file. Even if we send the ...
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 ...
0
votes
2answers
25 views

Dealing with unhandled HttpException

I have a controller action like this: public ActionResult Index(string url) { var pageTitle = url.Split('/')[0]; var page = Services.PageService.GetPage(pageTitle); if (page == null) ...
0
votes
1answer
184 views

System.Web.HttpException with BasicAuthentication custom HttpModule

I am trying to debug a System.Web.HttpException that I keep getting. It could be related to a BaiscAuthentication custom HttpModule I am trying to implement. The BasicAuthentication HttpModule is ...
0
votes
1answer
963 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
0answers
238 views

HttpException unhandled when using Server.Transfer or Response.Redirect

I am having a problem when using Server.Transfer("mypagehere") or Response.Redirect("mypagehere") Though I am not using it in a common way ; I have written my own control in the app_code ...
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 ...