在ASP編程中
一般命名規則
前綴 變量類型 例子
b or bln Boolean bSuccess
c or cur Currency cAmount
d or dbl Double dblQuantity
dt or dat Date and Time dtDate
f or flt Float fRatio
l or lng Long lMilliseconds
i or int Integer iCounter
s or str String sName
a or arr Array aUsers()
o or obj COM Object oPipeline
數據庫對象的變量前綴
前綴 對象類型 例子
cnn Connection cnnPubs
rst Recordset rstAuthors
cmd Command cmdEmployee
fld Field fldLastName
作用范圍相關前綴
前綴 描述
g_ 在Global
m_ 在INCLUDE文件和ASP文件中創建的變量
沒有前綴 非靜態變量
From:http://tw.wingwit.com/Article/program/net/201311/13029.html