Thanks John, I created a filter to change the contents of the page. Hwr when
I use the filter in the HTTPHandler, the page is blank.
Here is my code
public void ProcessRequest(System.Web.HttpContext context)
{
System.Web.HttpResponse objResponse = context.Response;
WebApplication2.ResponseFilter filter = new
WebApplication2.ResponseFilter(objResponse.Filter);
objResponse.Filter = filter;
}