Page.ProcessRequest...

  • Thread starter Thread starter Philipp Schumann
  • Start date Start date
P

Philipp Schumann

Hi there,

I have added an aspx-Page "home.aspx" with the corresponding code-behind
class "home.cs".

I also have a HttpHandler class that implements IHttpHandler. Do you know
why the following code is not rendering my "home" page at all (only empty,
default HTML scaffolding code is "generated"), and what I am missing here?

void IHttpHandler.ProcessRequest (HttpContext context) {
using (Page page = new home ())
((IHttpHandler) page).ProcessRequest (context);
}

Many thanks,
Phil
 
Back
Top