How do I display a web page from code

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • drofdarb
    New Member
    • Jul 2008
    • 1

    How do I display a web page from code

    Is there some code (html, php, or whatever) that will display a page?

    Specifically, I use several buttons in a top-frame to select different functional areas of a website. When I click one of these buttons, I display a specific menu for the button clicked in a left-frame. When that menu is loaded in the left-frame, I need to display one of that menu's options in a display-frame.

    I guess I'm looking for something that functions like:

    <DisplayPage source="Option1 .html" target="Display Frame">

    I googled everything I could think of but could not find what I needed. Can someone please suggest a method to do this?
    Thanks in advance...fab
  • Cmaza
    New Member
    • May 2007
    • 16

    #2
    You could always do something like, for loading the menu page, just target your hyperlinks to the frame name of the menu frame, then for displaying each menu option in another frame, use Javascript:

    Put an onLoad command somewhere into each of your menu pages that automatically loads the first or something option of your menu into the display frame, then, use onMouseOver and onMouseOut commands with each of your menu options to change the content of the display frame.

    Comment

    Working...