Results 1 to 4 of 4

Thread: New to web dev how do u structure layout

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jan 2007
    Location
    England
    Posts
    64

    New to web dev how do u structure layout

    Hi I'm new to asp.net web development
    need advice on structuring my web protal!

    I've basically got a tool bar on my main page at the top of the page which controls the section at the botton of the page (the contents section).

    I the old days I would have FRAMES! a frame at the top to house the toolbar
    and a frame at the bottom which loads a DIFFERENT page for each type of content!

    Is this how its still done?

    I've been told you can now use CONTROLS instead of frames... i.e. one page
    which loads in different CONTROLS to the main section depending on ur selection on the tool bar.

  2. #2
    Fanatic Member paulorton's Avatar
    Join Date
    Aug 2006
    Location
    West Wales
    Posts
    809

    Re: New to web dev how do u structure layout

    You will probably find that Master Pages provide a solution - you can design a look on a master page which can then be inherited automatically by different pages. You can have as many master pages as you like. Think of them as webpage templates, saving you lots of work. Have a look at http://www.asp.net/Learn/master-pages/
    Paul Orton
    VB6
    Visual Web Developer 2008 Express Edition
    Microsoft Visual Basic 2012 Express

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

    Re: New to web dev how do u structure layout

    If it's a web portal, chances are that you want people to find it.
    If you want people to find it, chances are that you want it to be search engine friendly.
    If you want it to be search engine friendly, chances are that you shouldn't be using frames or controls for navigation.

    So what I'm trying to say is that your links should go to separate pages rather than using the same.aspx and reloading more controls on it.

  4. #4
    Banned timeshifter's Avatar
    Join Date
    Mar 2004
    Location
    at my desk
    Posts
    2,465

    Re: New to web dev how do u structure layout

    The less code you put on any given page, the better. When it comes to load times, a couple seconds can make or break a site. Separate your pages, reuse code, and write proper HTML, and you can get sites to load very fast. I have a horrible internet pipe here at work, but I just rebuilt a site for a friend, and it STILL loads almost instantly. Very streamlined code, pure CSS-based, and it looks almost perfect in IE6 with no hacks. It all boils down to knowing how to write your code

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