Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Brinkster frame problem!

  • 12-11-2005 01: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, Registered Users 2 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, Paid Member Posts: 44,081 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