-
I have a website and the first page is a frames page with my contact details etc etc. in the left frame of the page and other stuff in my main page (right frame). If I now link to another page, my contents frame stays on the left and the new page opens in the right frame - I do not want this to happen. The first page must have a left and right frame, but all subsequent pages must then have NO frames!!??
Does this make sense......
Any help please..
-
add target="_top" to the links
Code:
<a href="http://www.vb-world.net" target="_top">click here</a>
-
Sorry, my fault - I wasn't very clear...
I use ASP, with this code to go to the next page
<form name="frmmypage" id="frmmypage" method="POST" action="details.asp">
When the user clicks on the submit button, the details.asp must open - on a new page - not in the right side frame!!
-
put the target thingy in the form tag
Code:
<form name="frmmypage" id="frmmypage" method="POST" action="details.asp" target="_top">
-