⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 isvalidemail.asp

📁 有很多功能的留言版,很容易上手,有自动添加图片、表情。管理员功能也强大
💻 ASP
字号:
<%
function IsValidEmail(email)
	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

function IsValidUrl(WebSize)
	IsValidUrl = true
	for i = 1 to Len(WebSize)
	c = LCase(Mid(WebSize, i, 1))
	if InStr("abcdefghijklmnopqrstuvwxyz_-/.:", c) <= 0 and not IsNumeric(c) then
		IsValidUrl = false
		exit function
	end if
	next
end function
%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -