PDA

View Full Version : Framesets


Ken McLean
11-29-2004, 02:36 AM
Is there a way I can put framesets on an aspx web page?

Ken McLean

bruce
11-29-2004, 07:46 AM
Yes. You can put any HTML code in your aspx page

Bruce

DiscountASP.NET
www.DiscountASP.NET (http://www.DiscountASP.NET)

rrvolk17306
11-30-2004, 03:04 AM
<FRAMESET cols="250,*">
<FRAME src="menu.aspx" name="treeframe">
<FRAME SRC="content.aspx" name="basefrm">
</FRAMESET>

Ken McLean
11-30-2004, 03:20 AM
Thanks. I was hoping to avoid HTML but I guess I can't.





Ken McLean

Michael
12-09-2004, 10:13 AM
Yes you can avoid HTML...! :)


hence the point of ASP.Net :) yes it is HTML based, but it takes all the garbage away from you having to worry about, you dont have to use frames if you dont want to.