Long story short, I have an ASP.NET application I'm trying to debug and at some point, in very particular circumstances, the application will throw exceptions at a Response.Redirect()
stating:
"Cannot redirect after HTTP headers have been sent."
Which I more or less get, except that I cannot figure out where the headers were sent.
Is there something to look for in an ASP.NET application that will indicate that the HTTP headers have been sent?
BONUS DIFFICULTY: The ASP.NET app is still in .NET 1.1. The circumstances regarding the delay behind the upgrade are a really sore subject.