Insert dynamic content from an aspx page into a static html page
In some cases, you have the need to insert dynamic content generated from an aspx page, inside a static html page. The following code snippet allows you to do this.
<div class="widget">
<iframe
src="http://www.mdmsoft.it/news.aspx"
style="border:none;"
height="600"
width="300">
</iframe>
</div>
Assuming that the news.aspx page returns a list of news, you can review them in any html page that includes this code.