I have recently upgraded some of my web applications to ASP.NET 3.5 by installing the framework on the server and setting up my web applications acrodingly and all is well, however.
On some pages, I want to clear the current contents of the response buffer with code like this:
Response.Clear();
// Output some stuff
Response.End();
But this now isn't working in 3.5 when it did in 2.0. I have also tried setting the response buffer to false but this didn't work either.
Can anyone let me know why it isn't working or if there is a work around?