Here are some general tips and observations I've come up with with regards to ASP programming.

Option Explicit
Always begin your ASP file with <% OPTION EXPLICIT %>. By adding it, you are required to declare all variables, and declaring variables is a good thing! How many times has this caused a problem?