how to display html page inside asp.net page
I have articles written formatted in html, and I would like to display it inside my asp.net page.
Please 开发者_Python百科help
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.
<iframe src="simple.html" border="0" frameborder="0" height="600" width="800"></iframe>
You can display them inside an iframe
.
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>
?
精彩评论