Frames question

Have you seen the iframe html tag?

http://www.w3schools.com/tags/tag_iframe.asp

It's an inline frame so maybe it would suit your needs. Pretty easy to use:
Code:
<table align="center" width="100%" height="100%" cellpadding="0" cellspacing="0" border="0">
	<tr align="center" valign="middle" width="100%" height="100%">
		<td align="center" valign="middle" width="100%" height="100%">
			<IFRAME id="iframe1" align="middle" HEIGHT="100%" WIDTH="100%" src="MyPage.aspx">
			</IFRAME>
		</td>
	</tr>
</table>
 
If you are using ASP.NET 2005 (.NET v2.0). You might want to look into MasterPages. They are really useful, but without more detail on what you want to do I cant say if they are what you need.
 
Back
Top