How to embed (show) an entire html page in asp.net

A

Alex

Hi. I need to insert an entire html page from a string variable into a
asp.net page. I thought that literals should work, but still I need to
remove some tags like html, body, etc.

Thanks,

Alejandro Penate-Diaz.
 
H

Hans Kesting

Alex said:
Hi. I need to insert an entire html page from a string variable into a
asp.net page. I thought that literals should work, but still I need to
remove some tags like html, body, etc.

Thanks,

Alejandro Penate-Diaz.

Remove all html-markup from the aspx file (leave just the <%@Page> line).
Then use an override of the Render method to write out that string as the
complete html content of your page.

Hans Kesting
 
A

Alex

Thanks! I did this:
protected override void Render(HtmlTextWriter writer)

{

writer.Write(Session["body"].ToString());

}

and worked just perfect.

Alejandro.
 

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

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,011
Latest member
AjaUqq1950

Latest Threads

Top