All articles with keyword "ASP Syntax"
@TRANSACTION Directive
If you’re using transactions in your ASP application, remember that the @TRANSACTION directive, however you’re using it, has to be on the first line of your ASP...
Click for more...
Always Provide a Case Else
When using the Select Case statement, always have a Case Else that will pick up any cases not matched in your list. Even if you're sure that extraneous values c...
Click for more...
ASP Comment Blocks
Like any other programming language, you have to comment your ASP code. Case in point: I wrote some complex logic for a calendar I built last year. I needed to ...
Click for more...
Avoid Global Variables
Whenever possible, declare your variables locally within subroutines. This will save memory resources and in turn, make your applications run faster. Any variab...
Click for more...
Calling Subroutines
In VBScript, you can call a subroutine simply by using the name of the subroutine, as shown here:
H...
Click for more...
|