ASP (Active Server Pages) is a powerful tool for generating dynamic, interactive web pages.

ASP Cookies syntax

Cookies are often used to identify users.

ASP Cookies example

<%
fname=Request.Cookies("firstname")
response.write("Firstname=" & fname)
%>