Cookies in ASP

A cookie is a small piece of information that a server can store in a Web browser. Each time the browser requests a page from the server it sends the relevant cookies too. ASP allows you to create and retrieve cookies easily. Creating a Cookie Cookies are created using Response.Cookies. Cookies are sent in the headers of the response so you should always set cookies before sending the body of th...

Posted in ASP at 2005-10-22T23:21:07Z.

First ASP Page

Just so you know how to get started with ASP, we'll go through a simple example step by step. ASP Files ASP files have an extension of .asp and are interpreted on-the-fly by your Web server (usually IIS or PWS). Your ASP files should be placed somewhere in a subdirectory of your Web root directory (often C:inetpubwwwroot). ...

Posted in ASP at 2005-10-22T23:31:02Z.