Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
ASP.NET

Response Object in Classic ASP

Write output, set cookies/headers, and control buffering with Response.

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"
%>