📄 密码验证.txt
字号:
html><head><title>欢迎进入聊天室</title>
<script language="javascript">
<!--
function Check()
{
var NotNull
NotNull=true
if (document.login.UID.value=="")
{
Alert("请输入姓名")
NotNull=false
}
if(document.login.PWD.value==""}
{
Alert("请输入密码")
NotNull=false
}
return NotNull
}
-->
</script>
<!-- 以上函数为不能让用户名和密码为空 -->
</head>
<body>
<% application("VisitorNum")=0%>
<form method="POST" name="Login" action="main.asp?online=true" align="center" onSubmit="return Check">
<table border="1" width="36%">
<tr>
<td>欢迎进入聊天室</td>
</tr>
<tr>
<td>请输入你的大名:
<!--webbot bot="Validation" startspan S-Display-Name="UID" S-Data-Type="String"
B-Value-Required="TRUE" I-Minimun-Length="1" I-Maximum-Length=10" -->
<!--webbot bot="Validation" endspan -->
<input type="text" name="UID" size="20" maxlength="10">
请输入你的密码:
<!--webbot bot="Validation" startspan S-Display-Name="PWD" S-Data-Type="String"
B-Value-Required="TRUE" I-Minimun-Length="1" I-Maximum-Length=10" -->
<!--webbot bot="Validation" endspan -->
<input type="password" name="PWD" size="20" maxlength="10">
<input type="submit" value="Submit" name="submit">
<input type="reset" value="Reset" name="Reset">
</td>
</tr>
</table>
</body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -