I have an old ASP application that I am converting to .Net. One of my issues is that in the old ASP app, their was a page that had a statement like this: <!--#Include file='topNav.asp'-->. Now I know all this does is insert this other ASP page in a particular location within the current page. By the way, this page is a navigation page that displays a horizontal menu.

So, my question is, how can I incorporate this same page within a new ASPX page. I was told one way would be to create a UserControl but I'm not sure how to do that. I'm looking for other possibilities before resorting to UC.

Thanks,