Declaring variables in ASP is simple. You don't have to declare if your variable is an integer, string, or object. You just declare it, and it has the potential to be anything. To declare a variable in ASP/VBScript we use the Dim statement. If you wanted to print out the variables, you could use the ASP Response.Write command.
Learn more about the rules for declaring and naming variables in ASP/VBScript and use of Option Explicit statement in our article Variables in ASP. More...