Results 1 to 6 of 6

Thread: [2005] Web Page design question VB.NET

  1. #1

    Thread Starter
    Member
    Join Date
    Jul 2007
    Posts
    57

    [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.

  2. #2
    Lively Member CPCisHere's Avatar
    Join Date
    Nov 2006
    Posts
    108

    Re: [2005] Web Page design question VB.NET

    You can put the treeview in a panel and enable scrollbars on the panel.
    Please send me a good rating if post is helpful.

  3. #3
    PowerPoster stanav's Avatar
    Join Date
    Jul 2006
    Location
    Providence, RI - USA
    Posts
    9,290

    Re: [2005] Web Page design question VB.NET

    Or put the treeview inside a div and set the div overflow attribute

  4. #4
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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.

  5. #5

    Thread Starter
    Member
    Join Date
    Jul 2007
    Posts
    57

    Re: [2005] Web Page design question VB.NET

    Thanks for everyones help. So many options, my head hurts

  6. #6
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width