PDA

Click to See Complete Forum and Search --> : Very newbie...


turfbult
Dec 11th, 2000, 02:43 AM
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..

Mark Sreeves
Dec 11th, 2000, 02:54 AM
add target="_top" to the links


<a href="http://www.vb-world.net" target="_top">click here</a>

turfbult
Dec 11th, 2000, 03:02 AM
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!!

Mark Sreeves
Dec 11th, 2000, 03:33 AM
put the target thingy in the form tag

<form name="frmmypage" id="frmmypage" method="POST" action="details.asp" target="_top">

turfbult
Dec 11th, 2000, 03:39 AM
Thank you - it works!!