Asp检测内容是否包含中文

熊海
熊海

    检测提交内容是否包含中文,这类检测好像在网上还是比较少的,反正我在网上是找了半天也没找到可以用的,基本上一些不全或者根本不能用,就是些执行效率比较低的,本来我也很少用到这个脚本,但最近几个程序出现的问题,让我不得不使用这个脚本。

    主要用途:限制一些表单只能提交中文或者英文,或者当检测使用。

    Asp脚本代码:

<%
function HasChinese(str)
HasChinese = false
dim ia
for ia=1 to Len(str)
if Asc(Mid(str,ia,1)) < 0 then
HasChinese = true
exit for
end if
next
end function

jc=HasChinese(content)
if jc = false then
response.write "<Script language=JavaScript>alert('我不包含中文');history.back();</Script>"
else
response.write "<Script language=JavaScript>alert('我包含中文');history.back();</Script>"
response.end 
end if
%

    其中content为需要检测的内容。

支付宝打赏支付宝 微信
微信扫一扫
0 条评论

评论:

发送