newuser.asp
资源名称:lts.rar [点击查看]
上传用户:jtjx586
上传日期:2022-01-11
资源大小:686k
文件大小:2k
源码类别:
ICQ/即时通讯
开发平台:
EasyLanguage易语言
- <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>无标题文档</title>
- </head>
- <body>
- <form onSubmit="return Check(this)">
- <script language="javascript">
- <!--
- function Check(form1)
- {
- var Notnull
- Notnull=true
- if(form1.uid.value=="")
- {
- window.alert("请数账号")
- Notnull=false
- }
- if (form1.pwd1.value=="")
- {
- window.alert("请数密码")
- Notnull=false
- }
- if (form1.pwd2.value!=form1.pwd1.value)
- {
- window.alert("输入的两次密码必须相同")
- Notnull=false
- }
- if (form1.nickname.value=="")
- {
- window.alert("昵称不空")
- Notnull=false
- }
- return Notnull
- }
- //-->
- </script>
- <form id="form1" name="form1" method="post" action="">
- <label></label>
- <p align="center">用户账号:
- <input type="text" name="textfield" id="textfield" />
- </p>
- <p align="center">
- <label>
- 密 码:
- <input type="text" name="textfield2" id="textfield2" />
- </label>
- </p>
- <p align="center">
- <label>确认密码:
- <input type="text" name="textfield4" id="textfield4" />
- </label>
- </p>
- <p align="center">
- <label>
- 昵 称:
- <input type="text" name="textfield3" id="textfield3" />
- </label>
- </p>
- <p align="center">
- <label>
- <input type="submit" name="button" id="button" value="提交" />
- </label>
- <label>
-
- <input type="submit" name="button2" id="button2" value="清除" />
- </label>
- </p>
- </form>
- </body>
- </html>
English
