ASP Best Practices

Next Topic

Comment Placement

Insert each comment with its corresponding code.

  • Inline comments should appear two spaces after the corresponding code.

  • Comments beginning on a new line should be set off with a blank line.

Example:

<% 
  Dim intVariable  'Explicitly declare variable.

  'Assign the variable an integer value. 
  intVariable = 5 
%>