Response Object in Classic ASP — a practical guide to Classic ASP Response with clear examples you can reuse in real projects.
ASP & ASP.NET Tutorial Series (15/247). Prefer one article? Read the complete ASP.NET tutorial.
Short description
Response.Redirect for navigation; Response.End to stop.
Response
<%
Response.ContentType = "text/html"
Response.Write "Saved"
Response.Redirect "home.asp"
%>