There are many suggestion in how to write empty response that over writes the generated html within the aspx. Many of them don't work because.. well, they don't..
but this does.
Response.ContentType = "application/text";
Response.Write("some text value");
Response.End();
This works like a lucky charm without the added calories... sweet!
A side note: done on .NET 4.0
Page Directive
{AutoEventWireup="true", Async="true", Buffer="true"}
No comments:
Post a Comment