能给个 asp.net 注册页面的源码 只要验证的代码

 我来答
miniapp3mvg9uy591asz
2013-06-25
知道答主
回答量:46
采纳率:0%
帮助的人:19.7万
展开全部
<script type="text/javascript">
$(function() {
$('form').submit(function() {
if ($('#txtName').val().replace(/\s/g, "") == '') {
alert('请输入用户名.\nPlease enter your username.');
$('#txtName').focus();
return false;
}
else {
var name = $('#txtName').val();
if (name.length < 5) {
alert('用户名不能少于5个字符.\nThe username should not be shorter than 5 characters.');
$('#txtName').focus();
return false;
}
else if (name.length >= 15) {
alert('用户名不能超过15个字符.\nThe username should not be longer than 15 characters.');
$('#txtName').focus();
return false;
}
};
if ($('#txtPwd').val().replace(/\s/g, "") == '') {
alert('请输入密码.\nPlease enter password.');
$('#txtPwd').focus();
return false;
}
else {
var name = $('#txtPwd').val();
if (name.length < 6) {
alert('密码不能少于6个字符.\nThe password should not be shorter than 6 characters.');
$('#txtPwd').focus();
return false;
}
else if (name.length > 22) {
alert('密码不能超过22个字符.\nThe password should not be longer than 22 characters.');
$('#txtPwd').focus();
return false;
}
};
if ($('#txtPwds').val().replace(/\s/g, "") == '') {
alert('请输入确认密码.\nPlease confirm password.');
$('#txtPwds').focus();
return false;
}
else {
var name = $('#txtPwds').val();
if (name.length > 22) {
alert('确认密码不能超过22个字符.\nThe confirm password should not be longer than 22 characters.');
$('#txtPwds').focus();
return false;
}
};
if ($('#txtPwd').val() != $('#txtPwds').val()) {
alert('确认密码与密码不一致.\nThe password and confirm password are not in accordance.');
$('#txtPwd').focus();
return false;
};
if ($('#txtEmail').val().replace(/\s/g, "") == '') {
//alert('请输入邮箱.\nPlease enter e-mail address.');
myalert('请输入邮箱.<br/>Please enter e-mail address.');
$('#txtEmail').focus();
return false;
}
else {
var email = $('#txtEmail');
var res = /^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/;
if (!res.test(email.val())) {
//alert("邮箱格式不正确.\nThe format of the e-mail address is not correct.");
myalert('邮箱格式不正确.<br/>The format of the e-mail address is not correct.');
email.focus();
return false;
}
};
});
});
</script>
huliqin424500
2013-06-25
知道答主
回答量:34
采纳率:0%
帮助的人:25.3万
展开全部
直接用验证控件啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式