Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

secure page wont disapear when I go to home page

Status
Not open for further replies.

sap1958

Technical User
Oct 22, 2009
138
0
0
US
I developed a secure page to handle credit card transactions. I have a link back to my home page. When I click the home page the url from the secure page stays but it does go back to my home page. How can I make the secure page leave when I go back to my home page?
 
It's probably in a frameset, so try adding a target attribute to your link:

Code:
<a href="yourHomePageUrl.html" [!]target="_top"[/!]>

The "_top" is one of a few special target values, in this case telling the browser to load in the main window instead of in any frame that it may be in.

Hope this helps,

Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

Dan's Page [blue]@[/blue] Code Couch:
Code Couch Snippets & Info:
The Out Atheism Campaign
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top