Tagged Questions

1
vote
1answer
101 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 Tr …
0
votes
2answers
92 views

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

Hi, 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 time …
0
votes
1answer
229 views

Rendering a view to a string in MVC, then redirecting — workarounds?

Hi -- I can't render a view to a string and then redirect, despite this answer from Feb (after version 1.0, I think) that claims it's possible. I thought I was doing something wro …
2
votes
2answers
222 views

Render view to string followed by redirect results in exception

So here's the issue: I'm building e-mails to be sent by my application by rendering full view pages to strings and sending them. This works without any problem so long as I'm not r …
0
votes
2answers
358 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 …
4
votes
5answers
3k views

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

When I call Response.Redirect(someUrl) I get an HttpException: "Cannot redirect after HTTP headers have been sent".
3
votes
6answers
929 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 …
1
vote
3answers
1k 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 httpRuntimei …