判断是否为数字
if isNumeric(id) then else response.End end if
强制转换为数字
ii = clng(ii)
转义单引号
replace(xxx, "'", "\'")
判断一个字符串是否包含另一个字符串
if instr(str, "s")>0 then response.Write(1) else response.Write(0) end if