<%
dim filename, i, flag
filename = Request.QueryString("file1")
if filename <> "" then
flag = false
for i=1 to len(filename)
if(ascb(midb(mid(filename,i,1),2,1))) > 0 then
flag = true
exit for
end if
next
if flag then
Response.Write "此文件名中有漢字" & "<br>"
else
Response.Write "此文件名中無漢字" & "<br>"
end if
end if
%>