比如說我有個dictionary
dim dicProduct
set dicProduct = server.CreateObject ("scripting.dictionary")
...
如果要判斷dicProduct某個key是否存在,請使用:
if dicProduct.exists("product_createddate") then
...
end if
請不要用
if dicProduct("product_createddate") = "" then
...
end if
因為不但會無法判斷,還會自動的把你的dicProduct裡長出一個key叫product_createddate, 會給後面的程式碼帶來災難!
遇到後,只有一句話來形容asp, 那就是「吃飽太閒了」