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!

response.redirect to another Frame!!!

Status
Not open for further replies.

Johno2090

Programmer
May 3, 2002
31
0
0
GB
i need help i have got a page i open up for errors and i use 4 frames a top, left, right and main. I want the page which is in theright frame to open up the error page in the Main frame.

Please tell me i can do this with .asp!!

 
redirect to the main page. On the main page use a javascript to force it to be the top page...

<script>
if (top.length != 0){
top.location = self.location
}
</script>
-- Just trying to help... LOL [ponder]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top