ButtonClick open asp in frame

what's inside the target property must be the name of your frame to load the page to.

Can also use :

_blank : a new window
_top : to suppress anyframe in your page (you know like someone loading your page in his frame (how ugly it become!)
_self : (default) to load instead of the current page
 
I agree. The best use still table.
And you can use scrolling menu or animating stuff that hover menu and your central page (which is not possible with frames).

Frame sux. Their is very few time where you must use frame.

What you can put in your OnLoad of your pages is this :

Code:
if( self.location != top.location )
  top.location.replace(self.location);
 
Back
Top