ASP Coding Standards: Difference between revisions

From Wikipedia of the Dark Brotherhood, an online Star Wars Club
(import from google cache)
(fixing quotes)
Line 1: Line 1:
<center>
<center>
<table border="1">
<table border="1">
Line 25: Line 26:


==  Variable Declaration, Naming and Type Notation  ==
==  Variable Declaration, Naming and Type Notation  ==
<dl>
 
<dt>RULE</dt>
;RULE
<dd> Each [http://en.wikipedia.org/wiki/Variable_(programming) variable] should be dimmed and initialized at the start of the appropriate code section. “Option Explicit” should be declared at the very start of each .asp file. Variables should be commented to display their use.
:Each [http://en.wikipedia.org/wiki/Variable_(programming) variable] should be dimmed and initialized at the start of the appropriate code section. “Option Explicit” should be declared at the very start of each .asp file. Variables should be commented to display their use.
</dd>
 
</dl>
:'''RATIONAL''': Using Option Explicit forces the coder to dim variables before they are used. Dimming variables and initializing them to the proper values speeds up the processing of the page.
<dl><dd>'''RATIONAL''': Using Option Explicit forces the coder to dim variables before they are used. Dimming variables and initializing them to the proper values speeds up the processing of the page.
 
</dd></dl>
;RULE
<dl>
:Use the [http://en.wikipedia.org/wiki/Hungarian_notation Hungarian notation] for naming variables and [http://en.wikipedia.org/wiki/Object_(computer_science) objects].
<dt>RULE</dt>
 
<dd> Use the [http://en.wikipedia.org/wiki/Hungarian_notation Hungarian notation] for naming variables and [http://en.wikipedia.org/wiki/Object_(computer_science) objects].
:'''RATIONAL''': The purpose of the Hungarian notation is to be able to interpret the type and purpose of a variable without having to search through the code for its use.
</dd>
EXAMPLES:
</dl>
<dl><dd>'''RATIONAL''': The purpose of the Hungarian notation is to be able to interpret the type and purpose of a variable without having to search through the code for its use.
</dd></dl>EXAMPLES:




Line 79: Line 77:
</tr>
</tr>
</table>
</table>
<dl>
;RULE
<dt>RULE</dt>
:Use the Hungarian notation for [http://en.wikipedia.org/wiki/Form_(web) form] fields to make forms clearer
<dd> Use the Hungarian notation for [http://en.wikipedia.org/wiki/Form_(web) form] fields to make forms clearer
 
</dd>
:'''RATIONAL''': The purpose of the Hungarian notation is to be able to interpret the type and purpose of a field without having to search through the code for its use.
</dl>
EXAMPLES:
<dl><dd>'''RATIONAL''': The purpose of the Hungarian notation is to be able to interpret the type and purpose of a field without having to search through the code for its use.
</dd></dl>EXAMPLES:




Line 115: Line 111:
</tr>
</tr>
</table>
</table>
;RULE
:Use all uppercase when declaring a [http://en.wikipedia.org/wiki/Constant_%28programming%29 const] variable


:'''RATIONAL''': Using all uppercase letters for constants helps to clearly indicate which variables are constants without referring to the declaration
EXAMPLE: Const MIN_USERS = 3




<dl>
<dt>RULE</dt>
<dd> Use all uppercase when declaring a [http://en.wikipedia.org/wiki/Constant_%28programming%29 const] variable
</dd>
</dl>
<dl><dd>'''RATIONAL''': Using all uppercase letters for constants helps to clearly indicate which variables are constants without referring to the declaration
</dd></dl>EXAMPLE: Const MIN_USERS = 3


;RULE
:Variable names should be meaningful and descriptive.


<dl>
:'''RATIONAL''': Combined with the Hungarian notation, this leads to clear code, where the purpose and type of each variable is obvious from inspection.
<dt>RULE</dt>
EXAMPLES:
<dd> Variable names should be meaningful and descriptive.
</dd>
</dl>
<dl><dd>'''RATIONAL''': Combined with the Hungarian notation, this leads to clear code, where the purpose and type of each variable is obvious from inspection.
</dd></dl>EXAMPLES:




Line 154: Line 144:
</table>
</table>
==  Code Documentation  ==
==  Code Documentation  ==
<dl>
 
<dt>RULE</dt>
;RULE
<dd> Include a File Information section at the very top of you page, include File Author, Date Created, Description and Date / Description of any changes made to the code.
:Include a File Information section at the very top of you page, include File Author, Date Created, Description and Date / Description of any changes made to the code.
</dd>
 
</dl>
:'''RATIONAL''': Documenting changes, the authors name and the date of the creation allow for easy understanding of and access to the author in the future.
<dl><dd>'''RATIONAL''': Documenting changes, the authors name and the date of the creation allow for easy understanding of and access to the author in the future.
 
</dd></dl>
;RULE
<dl>
:Document all variables.
<dt>RULE</dt>
 
<dd> Document all variables.  
 
</dd>
;RULE
</dl>
:Document all [http://en.wikipedia.org/wiki/Conditional_(programming) conditional statements], explain what it is checking.
<dl>
 
<dt>RULE</dt>
 
<dd> Document all [http://en.wikipedia.org/wiki/Conditional_(programming) conditional statements], explain what it is checking.
;RULE
</dd>
:Document all functions, explaining what the function does and what it is returning.
</dl>
 
<dl>
 
<dt>RULE</dt>
;RULE
<dd> Document all functions, explaining what the function does and what it is returning.
:Document all tricky and unusual code.
</dd>
 
</dl>
 
<dl>
<dt>RULE</dt>
<dd> Document all tricky and unusual code.
</dd>
</dl>
==  Code Structure and Practices  ==
==  Code Structure and Practices  ==
<dl>
 
<dt>RULE</dt>
;RULE
<dd> Avoid [http://en.wikipedia.org/wiki/Context_switch context switching] such as switching between ASP and HTML or switching between [http://en.wikipedia.org/wiki/VBscript VBscript] and [http://en.wikipedia.org/wiki/JScript Jscript] on the same page. Try to perform all server side code at the top of your page before executing any HTML code.  
:Avoid [http://en.wikipedia.org/wiki/Context_switch context switching] such as switching between ASP and HTML or switching between [http://en.wikipedia.org/wiki/VBscript VBscript] and [http://en.wikipedia.org/wiki/JScript Jscript] on the same page. Try to perform all server side code at the top of your page before executing any HTML code.
</dd>
 
</dl>
:''RATIONAL''': Switching between ASP and HTML causes a slow down in [http://en.wikipedia.org/wiki/Scripting_language script] processing time and leads to sloppy code. Forcing the ASP code at the top of the page requires planning and forethought from the coder.
<dl><dd>''RATIONAL''': Switching between ASP and HTML causes a slow down in [http://en.wikipedia.org/wiki/Scripting_language script] processing time and leads to sloppy code. Forcing the ASP code at the top of the page requires planning and forethought from the coder.
 
</dd></dl>
;RULE
<dl>
:Combine multiple "Response.Write" lines into one larger single statement whenever possible
<dt>RULE</dt>
 
<dd> Combine multiple "Response.Write" lines into one larger single statement whenever possible
:'''RATIONAL''': Speeds up script processing times. Leads to cleaner code
</dd>
 
</dl>
;RULE
<dl><dd>'''RATIONAL''': Speeds up script processing times. Leads to cleaner code
:Use [http://en.wikipedia.org/wiki/Array arrays] rather than [http://en.wikipedia.org/wiki/Associative_array dictionary objects] or [http://en.wikipedia.org/wiki/Collection_(computing) collections].
</dd></dl>
 
<dl>
:'''RATIONAL''': Arrays are always faster and more efficient than other storage methods and use less memory than dictionary objects or collections.
<dt>RULE</dt>
 
<dd> Use [http://en.wikipedia.org/wiki/Array arrays] rather than [http://en.wikipedia.org/wiki/Associative_array dictionary objects] or [http://en.wikipedia.org/wiki/Collection_(computing) collections].  
;RULE
</dd>
:Indent blocks of code with an indent size of four (4) spaces
</dl>
 
<dl><dd>'''RATIONAL''': Arrays are always faster and more efficient than other storage methods and use less memory than dictionary objects or collections.  
:'''RATIONAL''': Indents allow for easier readability of code. Four spaces is an industry-standard indent.
</dd></dl>
 
<dl>
;RULE
<dt>RULE</dt>
:Use white space to separate those blocks.
<dd> Indent blocks of code with an indent size of four (4) spaces
 
</dd>
:'''RATIONAL''': White space allows for easier readability of code
</dl>
 
<dl><dd>'''RATIONAL''': Indents allow for easier readability of code. Four spaces is an industry-standard indent.
;RULE
</dd></dl>
:Put all file includes below the File Information comment block.
<dl>
 
<dt>RULE</dt>
:'''RATIONAL''': Having includes at the top of the page instantly allows the coder to see what the file is referencing and follows the dichotomy calling for ASP to be at the top of the page.
<dd> Use white space to separate those blocks.  
 
</dd>
;RULE
</dl>
:Declare all [http://en.wikipedia.org/wiki/Global_variable global variables] below the file includes.
<dl><dd>'''RATIONAL''': White space allows for easier readability of code
 
</dd></dl>
:'''RATIONAL''': Global variables should be declared at the top of the file to increase ease of use and notice of what they are
<dl>
 
<dt>RULE</dt>
;RULE
<dd> Put all file includes below the File Information comment block.  
:Put the ASP delimiters &lt;% %&gt; on the left hand margin.
</dd>
 
</dl>
:'''RATIONAL''': Allows for easier readability of code. Makes it easier to distinguish code blocks.
<dl><dd>'''RATIONAL''': Having includes at the top of the page instantly allows the coder to see what the file is referencing and follows the dichotomy calling for ASP to be at the top of the page.
 
</dd></dl>
;RULE
<dl>
:Use all lowercase when writing HTML tags
<dt>RULE</dt>
 
<dd> Declare all [http://en.wikipedia.org/wiki/Global_variable global variables] below the file includes.  
:'''RATIONAL''': Allows for easier readability of code, lowers confusion with [http://en.wikipedia.org/wiki/Database Database] calls and Constant declarations.
</dd>
 
</dl>
;RULE
<dl><dd>'''RATIONAL''': Global variables should be declared at the top of the file to increase ease of use and notice of what they are
:Use “Sub” rather than “Function” for functions that have no return value
</dd></dl>
 
<dl>
:'''RATIONAL''': Subs are built to be used without returning a value. Using them in the place of functions increases code readability and processing speed.
<dt>RULE</dt>
 
<dd> Put the ASP delimiters &lt;% %&gt; on the left hand margin.  
;RULE
</dd>
:Dim and fill variables for items pulled from the Request(“”) object rather than calling the Request(“”) object continuously.
</dl>
 
<dl><dd>'''RATIONAL''': Allows for easier readability of code. Makes it easier to distinguish code blocks.  
:'''RATIONAL''': Using variables filled from the Request(“”) Object allows for easier readability of the code, as the coder can document what the data being pulled from the object is. Continued use of variables is also faster to process than Request(“”) calls and less confusing.
</dd></dl>
 
<dl>
<dt>RULE</dt>
<dd> Use all lowercase when writing HTML tags
</dd>
</dl>
<dl><dd>'''RATIONAL''': Allows for easier readability of code, lowers confusion with [http://en.wikipedia.org/wiki/Database Database] calls and Constant declarations.  
</dd></dl>
<dl>
<dt>RULE</dt>
<dd> Use “Sub” rather than “Function” for functions that have no return value
</dd>
</dl>
<dl><dd>'''RATIONAL''': Subs are built to be used without returning a value. Using them in the place of functions increases code readability and processing speed.  
</dd></dl>
<dl>
<dt>RULE</dt>
<dd> Dim and fill variables for items pulled from the Request(“”) object rather than calling the Request(“”) object continuously.
</dd>
</dl>
<dl><dd>'''RATIONAL''': Using variables filled from the Request(“”) Object allows for easier readability of the code, as the coder can document what the data being pulled from the object is. Continued use of variables is also faster to process than Request(“”) calls and less confusing.
</dd></dl>
==  Common Names and Customs  ==
==  Common Names and Customs  ==
[[Category:DJB Info]] [[Category:Coding Standards]]
[[Category:DJB Info]] [[Category:Coding Standards]]

Revision as of 07:10, 29 May 2011

Dark Brotherhood Coding Standards
Coding Standards and Practices
ASP Coding Standards CSS Coding Standards Database Standards
HTML Coding Standards JavaScript Coding Standards PHP Coding Standards

Variable Declaration, Naming and Type Notation

RULE
Each variable should be dimmed and initialized at the start of the appropriate code section. “Option Explicit” should be declared at the very start of each .asp file. Variables should be commented to display their use.
RATIONAL: Using Option Explicit forces the coder to dim variables before they are used. Dimming variables and initializing them to the proper values speeds up the processing of the page.
RULE
Use the Hungarian notation for naming variables and objects.
RATIONAL: The purpose of the Hungarian notation is to be able to interpret the type and purpose of a variable without having to search through the code for its use.

EXAMPLES:


Type Prefix Example
String str strName
Integer Int intUserId
Double, Float dbl dblDollarValue
Boolean bln blnIsBlank
Recordset rs rsMembers
RULE
Use the Hungarian notation for form fields to make forms clearer
RATIONAL: The purpose of the Hungarian notation is to be able to interpret the type and purpose of a field without having to search through the code for its use.

EXAMPLES:


Form Component Prefix
Input Box txtUserName
Check Box chkOrder
Button btnSubmit
Hidden Field hdnUserId
RULE
Use all uppercase when declaring a const variable
RATIONAL: Using all uppercase letters for constants helps to clearly indicate which variables are constants without referring to the declaration

EXAMPLE: Const MIN_USERS = 3


RULE
Variable names should be meaningful and descriptive.
RATIONAL: Combined with the Hungarian notation, this leads to clear code, where the purpose and type of each variable is obvious from inspection.

EXAMPLES:


Good Bad
strUserName N
intUserId uid

Code Documentation

RULE
Include a File Information section at the very top of you page, include File Author, Date Created, Description and Date / Description of any changes made to the code.
RATIONAL: Documenting changes, the authors name and the date of the creation allow for easy understanding of and access to the author in the future.
RULE
Document all variables.


RULE
Document all conditional statements, explain what it is checking.


RULE
Document all functions, explaining what the function does and what it is returning.


RULE
Document all tricky and unusual code.


Code Structure and Practices

RULE
Avoid context switching such as switching between ASP and HTML or switching between VBscript and Jscript on the same page. Try to perform all server side code at the top of your page before executing any HTML code.
RATIONAL': Switching between ASP and HTML causes a slow down in script processing time and leads to sloppy code. Forcing the ASP code at the top of the page requires planning and forethought from the coder.
RULE
Combine multiple "Response.Write" lines into one larger single statement whenever possible
RATIONAL: Speeds up script processing times. Leads to cleaner code
RULE
Use arrays rather than dictionary objects or collections.
RATIONAL: Arrays are always faster and more efficient than other storage methods and use less memory than dictionary objects or collections.
RULE
Indent blocks of code with an indent size of four (4) spaces
RATIONAL: Indents allow for easier readability of code. Four spaces is an industry-standard indent.
RULE
Use white space to separate those blocks.
RATIONAL: White space allows for easier readability of code
RULE
Put all file includes below the File Information comment block.
RATIONAL: Having includes at the top of the page instantly allows the coder to see what the file is referencing and follows the dichotomy calling for ASP to be at the top of the page.
RULE
Declare all global variables below the file includes.
RATIONAL: Global variables should be declared at the top of the file to increase ease of use and notice of what they are
RULE
Put the ASP delimiters <% %> on the left hand margin.
RATIONAL: Allows for easier readability of code. Makes it easier to distinguish code blocks.
RULE
Use all lowercase when writing HTML tags
RATIONAL: Allows for easier readability of code, lowers confusion with Database calls and Constant declarations.
RULE
Use “Sub” rather than “Function” for functions that have no return value
RATIONAL: Subs are built to be used without returning a value. Using them in the place of functions increases code readability and processing speed.
RULE
Dim and fill variables for items pulled from the Request(“”) object rather than calling the Request(“”) object continuously.
RATIONAL: Using variables filled from the Request(“”) Object allows for easier readability of the code, as the coder can document what the data being pulled from the object is. Continued use of variables is also faster to process than Request(“”) calls and less confusing.

Common Names and Customs