ASP Best Practices

Previous Topic Next Topic

Comment Placement

Insert each comment with its corresponding code.

Example:

<% 
  Dim intVariable  'Explicitly declare variable.

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

© 1997-1999 Microsoft Corporation. All rights reserved.