Frameset
-
-------------------------------------------------------------------------------- How to simulate a frameset under ASP.NET 2.0? I mean: suppose that our site should be divided into 4 parts, like that: 1 | 2 --|-- 3 | 4 Site number 1 would be a classic "menu". When user selects an option from this menu, some page should be loaded into section number 2, other page into section 3, and other in section 4. How to achieve that? I suppose that could be done using master pages and "menu" or "treeview" navigation controls, but I tryed and I wasn`t succesfull :( thank you in advance for help
-
-------------------------------------------------------------------------------- How to simulate a frameset under ASP.NET 2.0? I mean: suppose that our site should be divided into 4 parts, like that: 1 | 2 --|-- 3 | 4 Site number 1 would be a classic "menu". When user selects an option from this menu, some page should be loaded into section number 2, other page into section 3, and other in section 4. How to achieve that? I suppose that could be done using master pages and "menu" or "treeview" navigation controls, but I tryed and I wasn`t succesfull :( thank you in advance for help
You could use <iframe> tags in your sections 2,3,4 and have your menu items in 1 be LinkButtons, with event handlers that set the
src
attributes of the iframes accordingly.