The Response Object has the following Methods:

          <%@ LANGUAGE=Javascript %>

          <%

Response.Write("Hullo World!")
' This is a comment
<%= "Bam" %>
Response.Redirect("new_page.asp")
Response.Cookies("Name") = "1234, etc."
Response.Cookies("Name").Expires = Now()+7 (or date)

%>

Request Methods:

          <%@ LANGUAGE=Javascript %>

<%

request.form("txtName")
request.cookies("Name")
Request.ServerVariables("SERVER_NAME")

%>

Server Method:

          <%@ LANGUAGE=Javascript %>

<%

Server.CreateObject("VBObject.Class")

%>