Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Brinkster frame problem!

Options
  • 12-11-2005 1:46pm
    #1
    Closed Accounts Posts: 1,441 ✭✭✭


    Hi all,
    Heres the problem, i have this site in production on Brinkster.com, the page has three frames, a menu, banner and main page. The menu page changes the main page.
    The probem is when i run it on brinkster the menu page just chnges itself and not the main page???
    Any thoughts? or good site to run it from?:D

    P.S. heres the code for the frame page!
    <html>

    <frameset border="0" rows="20%,80%" frameborder="0">
    <frame src="banner.asp">


    <frameset border="0" cols="40%,60%" frameborder="0">

    <frame src="menu.asp" target="main">
    <frame src="main.asp" name="main">

    </frameset>

    </frameset>

    </html>


Comments

  • Registered Users Posts: 19,396 ✭✭✭✭Karoma


    You need to specify,in each link in menu.asp, where to load the page. i.e:
    <a href ="linked_one.html" target ="main">one</a><br>
    <a href ="linked_two.html" target ="main">two</a><br>
    ..


  • Moderators, Politics Moderators Posts: 39,788 Mod ✭✭✭✭Seth Brundle


    <frame src="menu.asp" target="main">
    <frame src="main.asp" name="main">
    
    should probably read
    <frame src="menu.asp" [b]name="menu"[/b]>
    <frame src="main.asp" name="main">
    
    and as Karoma said, all links in menu.asp have the attribute target="main"


  • Closed Accounts Posts: 1,441 ✭✭✭The_Goose


    Cool thanks lads


Advertisement