NCS Logo - Click for home page Northstar Developer Center
Platforms
All Platforms
.NET Framework (1.x - 4.x)
Active Server Pages
ASP.NET
C#
SQL Server
VB.NET
Visual Basic

Keywords
ASP.NET Authentication
ASP.NET Data Access
ASP.NET Page Events
.NET Data Types
.NET E-mail
.NET Functions
.NET System.IO
.NET System.Net
.NET System.Net.Sockets
Active Data Objects
ASP Architecture
ASP Black Belt
ASP Built-in Functions
ASP Built-in Objects
ASP Debugging
ASP Performance
ASP Security
ASP Syntax
ASP.NET Controls
ASP.NET Features
ASP.NET Master Pages
ASP.NET Security
Certifications
COM, DCOM, COM+
Data Access
E-Mail
Errors
HTML Tips
IIS
Object-Oriented Programming
SQL
Uncategorized ASP Tips
VB API Programming
VB Forms
VB Syntax

Book Support
Visual Basic 6 Bible
ASP Bible
ASP Weekend Crash Course
ASP.NET At Work
Creating Web Services

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...