LoudASP Knowledge Base - ASP Help Questions
General Active Server Page help questions
Making a Cookie with ASP
The internet cookie in its simplest way. The Response.cookies will let us
set a cookie. The Request.cookies will let us call that cookie.
<%
'set's the cookie value named bgcolor to 3399cc
Response.cookies("bgcolor")="3399cc"
'set the expirer date to tomorrows date
Response.cookies("bgcolor").expires = date + 1
'displays the cookie value
Response.write Request.cookies("bgcolor")
%>
This FAQ has been read 8485 times.
Using Server.MapPath() To Find Your Database.
Speed UP ASP
Server Variables
Redirecting to other pages
Making a Cookie with ASP
Lets Play With Arrays
How to use the Querystring
How to Use Forms 2
How to Use Forms
How to Show Active Users
How to Include Files
How to have ASP check your email
Hit Counter for ASP using Session (Session Based Hit Counter)
Force a Form Field to be Filled In!
Easy Basic ASP Guide 2
Easy Basic ASP Guide
Detecting Errors with the Err Object
Date Formatter for ASP (Date Formatter)
Connecting to Authorize.Net
Clog the Spam Machine
Calling ASP Code from an <IMG> tag
Banning Certain IP Address' To Your Site
ASP Random Numbers
ASP Generated SQL Statements
Adding Your Logo to a Bookmark
Adding and Subtracting Dates
|