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

Help!

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
How do you tell the browser to go to another page with VBSCript?
 
In ASP server side script you use Response.Redirect. You must have the buffer set to true in order for Response.Redirect to work.

Here's an example.
Code:
<%@ Language=VBScript %>
<% Response.Buffer = True %>
<%
dim myUrl
myUrl = &quot;somepage.asp&quot;

Response.Redirect myUrl
%>

ToddWW
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top