We have embedded an ASP page by creating an iframe on a asp.net web page and setting the source property to the URL of the ASP page. It works great but if you need to manage state between the two pages it becomes a little tricky.
<iframe id="frame1" name="frame1" src="frame1" runat="server">
</iframe>
The bolded sections above show the source property as well as the run at server attribute which allows you to set the source of the iframe from your code behind that has the iframe.
SA Developer .Net Online Community SupportPlease remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question.