📄 admindeptchk.asp
字号:
<!--#include file=../conn.asp-->
<!--#include file=cookies.asp-->
<link rel="stylesheet" type="text/css" href="IMG/jobcn.css">
<%
function IsValidEmail(email)
dim names, name, i, c
IsValidEmail = true
names = Split(email, "@")
if UBound(names) <> 1 then
IsValidEmail = false
exit function
end if
for each name in names
if Len(name) <= 0 then
IsValidEmail = false
exit function
end if
for i = 1 to Len(name)
c = Lcase(Mid(name, i, 1))
if InStr("abcdefghijklmnopqrstuvwxyz_-.", c) <= 0 and not IsNumeric(c) then
IsValidEmail = false
exit function
end if
next
if Left(name, 1) = "." or Right(name, 1) = "." then
IsValidEmail = false
exit function
end if
next
if InStr(names(1), ".") <= 0 then
IsValidEmail = false
exit function
end if
i = Len(names(1)) - InStrRev(names(1), ".")
if i <> 2 and i <> 3 then
IsValidEmail = false
exit function
end if
if InStr(email, "..") > 0 then
IsValidEmail = false
end if
end function
dim sql
dim rs,dianhua
dim username,companyuser,bmmc,fzr,fzrmail
dim personuser,count
username=request.cookies("ijob")("comid")
if request("bmmc")="" then
response.write "<br>"+"<li>请输入部门名称(长度不能大于20)。"
response.end
else
bmmc=trim(request.form("bmmc"))
end if
if request("dianhua")="" then
response.write "<br>"+"<li>请输入部门名称(长度不能大于20)。"
response.end
else
dianhua=trim(request.form("dianhua"))
end if
if Instr(request("bmmc"),"=")>0 or Instr(request("bmmc"),"%")>0 or Instr(request("bmmc"),chr(32))>0 or Instr(request("bmmc"),"?")>0 or Instr(request("bmmc"),"&")>0 or Instr(request("bmmc"),";")>0 or Instr(request("bmmc"),",")>0 or Instr(request("bmmc"),"'")>0 or Instr(request("bmmc"),",")>0 or Instr(request("bmmc"),chr(34))>0 or Instr(request("bmmc"),chr(9))>0 or Instr(request("bmmc"),"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -