Click here to Skip to main content
15,888,315 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to include an ASP.NET ASPX webpage into an other ASP.NET ASPX webpage without using any frame or iFrame..??
Posted
Comments
Ed Nutting 9-Sep-12 16:50pm    
Use an internal server side call to generate the page then include the contents of its body into the rest of the page. Alternatively, think of a more sensible way of doing this because at the moment that sounds ridiculous... Either use an iFrame or your code needs restructuring...

Ed
bbirajdar 10-Sep-12 3:06am    
Convert the aspx page to ascx user control and use it in the first page..

1 solution

If at all you are looking for common functionality for more than 1 page, you should defintely use Master Pages. Suppose you have 20 pages and 3 types of look and style then use 3 Master Pages.

Follow the ref links:

Beginner's Tutorial on Master Pages in ASP.NET[^]

http://www.4guysfromrolla.com/articles/062409-1.aspx[^]

http://msdn.microsoft.com/en-us/library/wtxbf3hh(v=vs.100).aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900