About Boster Sibande Expertise I can answer questions in the following areas: ASP.Net, VB.Net, C#.Net, Microsoft Access and SQL Server. These are the technologies I use in my day-to-day work. As such, I am very confident and happy to assist
Experience I have two years experience with ASP.Net
Organizations UNDP
Education/Credentials Currently studying MSc. in IT
Expert: Boster Sibande Date: 7/22/2006 Subject: How to include aspx pages in ASP project
Question Hi,
I have a big ASP project. Now I want to include some pages which i have already created inaspx. So how to include those pages in my ASP project.
Thanks & Regards
Neha
Answer Dear Neha,
You can include ASPX pages in an ASP project in two ways.
One, you can just create links to aspx pages from asp ones. The advantage is that IIS will serve both of them if you the .net framework.
Another way of including your aspx pages in asp is by using inline frames as follows:
<iframe src="mypage.aspx" scrolling="no" frameborder="0" width="100%" height="1000"></iframe> within the asp page.
So the asp page will show contents from asp and aspx in one window and the user will not notice.