1
可能有人告訴我如何刪除ASP中的特殊字符(經典)。我正在使用MS Access數據庫。我的意思是有任何函數像stripslashes()或addslashes(){PHP}。 任何幫助將appriciated在ASP中刪除特殊字符
可能有人告訴我如何刪除ASP中的特殊字符(經典)。我正在使用MS Access數據庫。我的意思是有任何函數像stripslashes()或addslashes(){PHP}。 任何幫助將appriciated在ASP中刪除特殊字符
在PHP函數的stripslashes可以寫成
function StripSlahes(input)
StripSlashes = replace(input,"\","")
end function
在ASP
。 AddSlashes()稍微複雜一點,你需要3個電話來取代
function AddSlahes(input)
AddSlashes = replace(input,"\","\\")
AddSlashes = replace(AddSlashes,"'","\'")
AddSlashes = replace(AddSlashes,chr(34),"\"+chr(34))
end function
你必須用JavaScript或vbScript自己編寫它。 – adatapost