萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> asp編程 >> 在asp中過濾非法字符的函數

在asp中過濾非法字符的函數

<%  
Function cutbadchar(str)  
badstr="不|文|明|字|符|列|表|格|式"   ’此處填寫不文明的詞語,用|分開 
badword=split(badstr,"|")  
For i=0 to Ubound(badword)  
If instr(str,badword(i)) > 0 then  
str=Replace(str,badword(i),"***")  
End If  
Next  
cutbadchar=str  
End Function  
%>

copyright © 萬盛學電腦網 all rights reserved