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!

How Do I End ASP???

Status
Not open for further replies.

imstillatwork

IS-IT--Management
Sep 26, 2001
1,605
US
Here is the If statment:

If Request.Form("Print") = "yes" Then
Server.Execute"phone_print.asp"
End If
(more code down here)

I want the ASP to stop after the Server.Execute. My current ASP keeps displaying everything else after the Server.Execute Is displayed. Very Simple I am sure, but I am New to this!!
thank you!!

kevin
 
Response.End

That will completely stop the ASP script from processing, it that's what you want.
 
Thanks...
I know I have seen/ used that before
that what i wanted.

kevin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top