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

📄 regedit_successful.jsp

📁 对学习 VC有所帮助的几个例子
💻 JSP
字号:
<%@ include file = "../../config.jsp" %>
<%@ page contentType="text/html;charset=GBK"%>
<html>
<head>
<title>CWC大型购物商城</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../../style" rel="stylesheet" type="text/css">
<script language="javascript" src="../check.js"></script>
<script language="javascript">
function CheckForm(TheForm) {
	trimform(TheForm);

	if (TheForm.name.value == "") {
		alert("请填写您的帐号!");
		TheForm.name.focus();
		return(false);
	}

	if (TheForm.pwd.value == "") {
		alert("请填写您的密码!");
		TheForm.pwd.focus();
		return(false);
	}

	if ((TheForm.sex[0].checked + TheForm.sex[1].checked) == 0) {
		alert("请选择您的性别!");
		return(false);
	}

	if (!chknumber(TheForm.age.value) || TheForm.age.value.length > 2 || TheForm.age.value == "") {
		alert("请正确填写您的年龄!");
		TheForm.age.focus();
		return(false);
	}

	if (!chkphone(TheForm.tel.value) || TheForm.tel.value == "") {
		alert("请正确填写您的电话号码!");
		TheForm.tel.focus();
		return(false);
	}

	if (TheForm.address.value == "") {
		alert("请填写您的地址!");
		TheForm.address.focus();
		return(false);
	}

	if (!chkemail(TheForm.email.value) || TheForm.email.value == "") {
		alert("请正确填写您的邮件地址!");
		TheForm.email.focus();
		return(false);
	}

	return(true);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  theURL += document.all.form1.account.value;
  window.open(theURL,winName,features);
}
</script>
</head>
<body topmargin="0">
<%@ include file = "../../head.jsp" %>
<br>
<br>
<table width="100%" height="257" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td align="center" valign="middle"><font color="#FF0000" size="3">注册成功!</font></td>
  </tr>
</table>
<br>
<br>
<%@ include file="../../foot.jsp"%>
</body>
</html>

⌨️ 快捷键说明

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