Streaming multiple pages into one page

  • Thread starter Thread starter atillam
  • Start date Start date
A

atillam

Hello,

I have couple of ASPX pages that I want to display on one page.
This is sort of printing multiple ASPX pages to one ASPX page.
(then may be I can convert it to PDF file).
Is there a way that I can attach Response bodies and attach to one body
and display as one page?

Or is there another way to do it.

Atilla MALAS
 
Hello,

you can have the parts that will recur in different pages separated into
user control (.ascx) files and then load them where you want.
 
Atilla,

In order to do this, I would use the HttpWebRequest/HttpWebResponse or
the WebClient class to download your pages, and then write the streams out
to the response stream.

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top