[2005] Web Page design question VB.NET
I am trying to figure out how to design a form using a treeview on the left that may need to be scrollable and once a node is selected show some data on the right side.
Similar to what the msdn site provides. Treeview on the left and content on the right.
All this web design stuff is new to me, so any examples or techniques would be appreciated.
Thanks.
Re: [2005] Web Page design question VB.NET
You can put the treeview in a panel and enable scrollbars on the panel.
Re: [2005] Web Page design question VB.NET
Or put the treeview inside a div and set the div overflow attribute
Re: [2005] Web Page design question VB.NET
<div style="overflow:auto;">
<asp:YourControlHere/>
</div>
As for having it display data on the right side, if you want it similar to MSDN, have your hyperlinks have a target of _top, and get your frameset page to determine what to load in the main content frame based on the URL.
Re: [2005] Web Page design question VB.NET
Thanks for everyones help. So many options, my head hurts :eek2:
Re: [2005] Web Page design question VB.NET
That's just the tip of the iceberg lettuce! I didn't want your head exploding on the monitor.