How to embed an .aspx page in a WebControl library?

  • Thread starter Thread starter Lloyd Dupont
  • Start date Start date
L

Lloyd Dupont

I want to create an image chooser popup window.
The popup window/frame is easier to define as an .aspx but I don't know how
to compile this .aspx.
Create a whole Page by code is quite cumbersome, is there a class to parse
an .aspx and transform it into a Page
instance?

(so I just embed the .aspx in my library, and when my HttpHandler is called,
I create a Page instance and forward the HttpRequest to it)
 
never mind, after much reflection I realize it can't be done nice, I have to
use code only!
 
Back
Top