HOW can you show an HTML...

  • Thread starter Thread starter Drun
  • Start date Start date
Hello Drun,

Just render your page to the string using StringBuilder + StringWriter +
HtmlTextWriter + RenderControl

See the sample which use this approach there http://aspnet.4guysfromrolla.com/articles/091102-1.aspx

---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

D> page (an HTML file) from an ASP.NET page?
D>
 
page (an HTML file) from an ASP.NET page?

As in, you have to file local? Simple then. Just suck it in with
System.IO methods then stream it back out to the page. Either through
Response.Write() or by dumping it into a Literal control.

If the file is living on another server that you can only access via
HTTP, you'll need to use HttpWebRequest to pull the file local before
you can dump it onto the page.

Good luck.


Jason Kester
Expat Software Consulting Services
http://www.expatsoftware.com/
 
Back
Top