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

📄 regist.htm

📁 好像是ASP实例导航中的进销存管理系统的源代码,忘了名
💻 HTM
字号:
<html>
<head>
<title>注册用户</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language="JavaScript">
<!--
function validateform() 
{
	document.returnvalue = true;
	if(document.form.Name.value=='')
	{
		alert('请输入用户名!');
		document.form.Name.focus();
		document.returnvalue = false;
		return;
	}
	if(document.form.Password.value=='')
	{
		alert('请输入密码!');
		document.returnvalue = false;
		return;
	}
	if(document.form.Password2.value=='')
	{
		alert('请再次输入密码!');
		document.returnvalue = false;
		return;
	}
	if(document.form.Password.value!=document.form.Password2.value)
	{
		alert('密码输入不正确!');	
		document.returnvalue = false;
		return;
	}
}
//-->
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000">
<div align="center">
  <p><H2><font face="华文彩云">用户注册</font></H2></p>
  <form name="form" method="post" action="deal_regist.asp" onSubmit="validateform();return document.returnvalue">
    <table width="300" border="1" cellspacing="0">
      <tr bgcolor="#CCCCCC"> 
        <td nowrap><b>用户名:</b></td>
        <td> 
          <input type="text" name="Name" size="20" maxlength="20">
          <font color="#FF0000">*</font> </td>
      </tr>
      <tr bgcolor="#FFFFFF"> 
        <td nowrap><b>密码:</b></td>
        <td> 
          <input type="password" name="Password" size="20" maxlength="20">
          <font color="#FF0000">*</font> </td>
      </tr>
      <tr bgcolor="#CCCCCC"> 
        <td nowrap><b>密码确认:</b></td>
        <td> 
          <input type="password" name="Password2" size="20" maxlength="20">
          <font color="#FF0000">*</font> </td>
      </tr>
      <tr bgcolor="#FFFFFF"> 
        <td nowrap><b>联系地址:</b></td>
        <td> 
          <textarea name="Address" cols="30" rows="3"></textarea>
        </td>
      </tr>
      <tr bgcolor="#CCCCCC"> 
        <td nowrap><b>城市:</b></td>
        <td> 
          <input type="text" name="City" size="15" maxlength="15">
        </td>
      </tr>
      <tr bgcolor="#FFFFFF"> 
        <td nowrap><b>地区:</b></td>
        <td> 
          <input type="text" name="Region" size="25" maxlength="25">
        </td>
      </tr>
      <tr bgcolor="#CCCCCC"> 
        <td nowrap><b>邮政编码:</b></td>
        <td> 
          <input type="text" name="PostalCode" size="10" maxlength="6">
        </td>
      </tr>
      <tr bgcolor="#FFFFFF"> 
        <td nowrap><b>国家:</b></td>
        <td> 
          <input type="text" name="Country" value="中华人民共和国" size="25" maxlength="25">
        </td>
      </tr>
      <tr bgcolor="#CCCCCC"> 
        <td nowrap><b>联系电话:</b></td>
        <td> 
          <input type="text" name="Phone" size="30" maxlength="30">
        </td>
      </tr>
      <tr bgcolor="#FFFFFF"> 
        <td nowrap><b>传真:</b></td>
        <td> 
          <input type="text" name="Fax" size="30" maxlength="30">
        </td>
      </tr>
      <tr bgcolor="#CCCCCC"> 
        <td nowrap><b>电子邮箱:</b></td>
        <td> 
          <input type="text" name="Email" size="30" maxlength="30">
        </td>
      </tr>
    </table>
    <p> 
      <input type="submit" name="Submit" value="提交">
      <input type="reset" name="Reset" value="重置">
    </p>
  </form>
  <p><b><font size="-1">!带<font color="#FF0000">*</font>为必须填写的内容</font></b></p>
</div>
</body>
</html>

⌨️ 快捷键说明

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