Declaring variables in ASP is simple, especially since all variables are of Variant type. What does this mean to you? 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.