ASP Best Practices

Previous Topic Next Topic

Constant Names

Use all uppercase when naming constants to distinguish them from other elements. An underscore can be used to separate terms when necessary.

Example:

Const MIN_QUAL = 25

© 1997-1999 Microsoft Corporation. All rights reserved.