Mondeo Posted February 9, 2007 Posted February 9, 2007 Is there any way with ASP.NET other than using frames to embed one web page within another? Thanks Quote
Leaders John Posted February 9, 2007 Leaders Posted February 9, 2007 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: <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> Quote "These Patriot playoff wins are like Ray Charles songs, Nantucket sunsets, and hot fudge sundaes. Each one is better than the last." - Dan Shaughnessy
Nate Bross Posted February 9, 2007 Posted February 9, 2007 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. Quote ~Nate� ___________________________________________ Please use the [vb]/[cs] tags on posted code. Please post solutions you find somewhere else. Follow me on Twitter here.
Mondeo Posted February 9, 2007 Author Posted February 9, 2007 I think that iframe will work fine, thanks a lot Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.