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

Open new page in existing window

Status
Not open for further replies.

stan8450

Programmer
May 3, 2002
16
CA
I would like some help in opening a new page in existing window.
I am currently using window.open"fsgasfgasfg". It only opens the page in a new window.

any help appreciated
 
if your using javascript try

<script language=&quot;javascript&quot;>

window.location.href = (&quot;yourpage.asp&quot;)

</script>

vbscript

<script>

window.location.href = (&quot;yourpage.asp&quot;)

</script>

ASP

<%
response.redirect(&quot;yourpage.asp&quot;)
%>


Mark Preece
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top