ASP Programming Tips Tips on ASP code from basic to general tutorial.
 |
Posted October 26th, 2007 at 03:37 AM by Monie
Updated November 1st, 2007 at 06:05 AM by Monie
[ Option Explicit ]- <% Option Explicit %>
- It is usually placed at the top of your asp page.
- Option Explicit requires that all variable names be declared (with the Dim statement). Using Option Explicit to force variable declaration is good for a number of reasons.
- Using Option Explicit forces you to declare all your variables before you use them. If you use a variable you haven't declared then an error
...
|
Most Reputable Member
|
|
Comments 0
|