Framesets

Discussion in 'ASP.NET / ASP.NET Core' started by Ken McLean, Nov 29, 2004.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. Is there a way I can put framesets on an aspx web page?

    Ken McLean
     
  2. Bruce

    Bruce DiscountASP.NET Staff

    Yes. You can put any HTML code in your aspx page

    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     
  3. <FRAMESET cols="250,*">
    <FRAME src="menu.aspx" name="treeframe">
    <FRAME SRC="content.aspx" name="basefrm">
    </FRAMESET>
     
  4. Thanks. I was hoping to avoid HTML but I guess I can't.





    Ken McLean
     
  5. 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.
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page