I recently upgraded some of my web applications to ASP.NET 3.5 by installing a framework on the server and customizing my web applications, but all is well.
On some pages, I want to clear the current contents of the response buffer using code as follows:
Response.Clear();
But now it does not work in 3.5, when it was in version 2.0. I also tried setting the response buffer to false, but that didn't work either.
Can someone tell me why it is not working, or if there is work?
Gatekiller
source share