Reputation: 3
I have articles written formatted in html, and I would like to display it inside my asp.net page.
Please help
Upvotes: 0
Views: 12420
Reputation: 499352
Just use it as is.
If you place HTML in an aspx
page, it will remain unchanged.
Seeing as you want to display several HTML pages within another, you can use html FRAMEs.
Upvotes: 4
Reputation: 6101
Is this an entire Html page - in which case is there a need for the aspx page at all.
Or is this just formatting tags, e.g. <b>bold heading</b>
?
Upvotes: 0
Reputation: 100358
<iframe src="simple.html" border="0" frameborder="0" height="600" width="800"></iframe>
Upvotes: 3