Try this too [important!]:<br><br>remove [line 228]<br>context.Response.Buffer =
false;<br><br>and substitute it with:<br>context.Response.BufferOutput =
true;<br><br>There are many discussion about this option. Reading posts on <a href="http://ASP.NET">ASP.NET</a> forum seems this should be the correct value.<br>context.Response.Buffer is just a property to set BufferOutput. So we use directly BufferOutput.<br>
<br>P.I.<br><br><br><br>