List of Request.ServerVariables

The ServerVariables are a collection of environment variables and request header information. Information relates to the client and the server. Information available in the ServerVariables includes the server and client IP addresses and the client browser details. Variable Description ALL_HTTP Returns all of the HTTP headers sent by the client. Always prefixed with HTTP_ and […]

Read More… from List of Request.ServerVariables

Migrating CDONTS e-mail

The implementation of the CDONTs e-mail method used in asp has changed in Windows 2003 server. Example old CDONTS implementation Set m1 = CreateObject(“CDONTS.NewMail”) m1.From = fromAddr m1.To = recipients m1.Subject = subject m1.Body = CStr(“” & body) m1.Send The code below is an example of the new cdo format. Set objErrMail= Server.CreateObject(“CDO.Message”) With objErrMail […]

Read More… from Migrating CDONTS e-mail