Okay, its late and im tired so i do apologise if i dont make a whole lot of sense.
From what i can make out you are reffering to a .master page (this can only be used in asp.net 2.0), where you click a URL and it opens the content elsewhere without changing the layout (close relation to an iFrame).
masterpage.master
Code:
<html>
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
</asp:contentplaceholder>
</div>
</form>
</body>
</html>
This section of the code for the masterpage will allow you to easily maintain the content without destroying the theme/layout.
Code:
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
</asp:contentplaceholder>
To change the content for each page all you have to do is apply this section of code to a blank document and edit between the asp command and the layout will not change.
default.aspx
Code:
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
Page contact can be place here.
</asp:Content>
I hope this is what you are after, if not, again i apologise as im extremely tired.
Any questions on the other hand i have no problem answering, of course, i must be awake at the time.
Bookmarks