Mischamel Posted March 11, 2004 Posted March 11, 2004 Hola, I´d like to open a new asp site in my mainframe, via clicking a asp, or html button in my linkframe. How to do this ??? :p Quote Sometimes you´ve got to make a silent Takedown .
wessamzeidan Posted April 6, 2004 Posted April 6, 2004 use the target property of your link ex: target="mainframe" Quote Proudly a Palestinian Microsoft ASP.NET MVP My Blog: wessamzeidan.net
Arch4ngel Posted April 6, 2004 Posted April 6, 2004 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 Quote "If someone say : "Die mortal !"... don't stay to see if he isn't." - Unknown "Learning to program is like going out with a new girl friend. There's always something that wasn't mentioned in the documentation..." - Me "A drunk girl is like an animal... it scream at everything like a cat and roll in the grass like a dog." - Me after seeing my girlfriend drunk and some of her drunk friend. C# TO VB TRANSLATOR
Moderators Robby Posted April 6, 2004 Moderators Posted April 6, 2004 The best solution is; try to not use frames at all. Quote Visit...Bassic Software
Arch4ngel Posted April 6, 2004 Posted April 6, 2004 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 : if( self.location != top.location ) top.location.replace(self.location); Quote "If someone say : "Die mortal !"... don't stay to see if he isn't." - Unknown "Learning to program is like going out with a new girl friend. There's always something that wasn't mentioned in the documentation..." - Me "A drunk girl is like an animal... it scream at everything like a cat and roll in the grass like a dog." - Me after seeing my girlfriend drunk and some of her drunk friend. C# TO VB TRANSLATOR
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.