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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to redirect usig VBScript to an especific frame????

Status
Not open for further replies.

vatoxxx

Programmer
Jun 14, 2000
3
MX
<br>I know how to do it with <br><br>response.redirect <br><br>but i laod the page in a new window.<br><br>I want that it gonna load in a especific frame<br><br><br>Thanks!!!!!!!!
 
The easiest way to do this is to write code that will execute on the client.&nbsp;&nbsp;&nbsp;You can't specify a target on a redirect.&nbsp;&nbsp;If you want to load it in the topmost frame:<br><br>response.write &quot;&lt;script&gt;&quot;<br>response.write &quot;top.document.location.href='&quot; & theURL & &quot;'&quot;<br>response.write &quot;&lt;/script&gt;&quot; <p>nick bulka<br><a href=mailto: > </a><br><a href= > </a><br>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top