loading frames asp

  • Thread starter Thread starter Jessica Weiner
  • Start date Start date
J

Jessica Weiner

I have a website with the company logo on top. Underneath the logo there is
a menu which has links. When the user clicks on a link, I want to be able to
take them to that page without having to reload the company logo on top.
Here is a good example of what I am trying to do.

http://www.jetsonj2ee.com/

This website does exactly what I want. The links only load the contents
below the company logo. How can this be accomplished?

Thanks.
Jess
 
Jessica,

Mostly you can do these things by making controls or whatever visible =
false. If what you want has no visible property or you want to do more, than
you can place them on a panel.

I hope this helps,

Cor
 
Jessica said:
I have a website with the company logo on top. Underneath the logo there is
a menu which has links. When the user clicks on a link, I want to be able to
take them to that page without having to reload the company logo on top.
Here is a good example of what I am trying to do.

http://www.jetsonj2ee.com/

This website reloads the company logo every time because it consists of
a single HTML file. However, you can use frames (see 'frame' HTML
element) and refer to the frame using the 'target' attribute of the
hyperlink ('a' element).
 
Back
Top