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

如题所述

<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>
温馨提示:内容为网友见解,仅供参考
第1个回答  2013-06-25
直接用验证控件啊

用asp.net怎样写个登录注册怎么写,希望有个简单的案例,基于C#的
注册 用户名:<asp:TextBox ID="TextBox1" runat="server"><\/asp:TextBox> 密 码:<asp:TextBox ID="TextBox2" runat="server"><\/asp:TextBox> <asp:Button ID="Button1" runat="server" Text="注册" onclick="Button1_Click" \/> 代码:public partial class Default7 ...

asp.net注册功能思路及源码
第一:注册的验证码会在首先验证,如果错误,跳错,程序停止。第二:验证输入的信息,譬如用户名的格式啊长度啊,特殊字符啊一些。还有密码的格式,另外就是两次密码的一样与否,如果不符合,跳错,程序停止 第三:验证用户输入的名称是否已经被注册,(有些程序员会在页面上用插件以及ajax直接就验证了...

ASP.NET如何设计一个简单的验证码
新建一个Image.aspx页面,前台不用添加任何元素,后台代码为 static readonly string STR = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";protected void Page_Load(object sender, EventArgs e){ Random rd = new Random();int a = rd.Next(100);int b = rd.Next(1000);int...

ASP.NET的登录界面代码问题。
\/\/if(SqlDataSource1.Insert()>0)这一句前面加SqlDataSource1.Insert();就可以写入数据库了

求asp中的登录注册的源码
2.数据库连接文件 conn.asp <%set rs=server.createobject("adodb.recordset")conn = "driver={Microsoft Access Driver (*.mdb)};DBQ="&server.mappath("data.mdb")> --- 3:登录检测页面 go.asp <!-- #include file="conn.asp" --> < pwd=request.Form("pwd")set rs=server.createobj...

ASP.net(C#)如何实现用户注册
我也去答题访问个人页 展开全部 1、 用户注册 发送信息格式:rn****p***(n后面的10个字符为用户名;p后面10个字符为密码;多余部分用空格代替)发送为byte数组;长度为23。需要返回客户端信息:r1或r0(r1代表注册成功,r0代表注册失败)实现功能:用户注册 已赞过 已踩过< 你对这个回答的评价是? 评论 收起 ...

asp.net 实现邮箱验证激活注册用户
你需要一个字段来存储这个用户的验证号 然后再注册的时候 int checkNumber = ran.Next(10000, 99999); 生成一个随机吗 存到数据库 然后发送邮件 如下 string smtpServer = 地址 int smtpPort = 端口 string userAccount = 帐号 string userPassword = 密码 string userName = 姓名 string EmailAddress...

做一个登录页面,如果输入正确的用户名和密码,则进入欢迎页面,否则错误...
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="密码" Width="116px" \/> 代码窗体的代码如下:using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.Web...

asp.net中怎样显示注册成功页面 失败则提示错误消息
1.前台布局,添加2个初始值为空的Label:Label1、Label2,2个textbox;2.编写后台代码.(1)执行SQL语句,获取返回的记录行数int i (这一步不是一两句说得清楚的)(2)if(i==1){Label1.Text = "alert('注册成功!');"}else{Label2.Text = "alert('注册失败的提示信息!');" } ...

asp.net 例如注册页面 用户名输入后 验证控件没有提示错误 在旁边现 ...
function onblur() { document.getElementById("image").style.display="block"} <asp:Image ID="Image1" runat="server" Height="29px"ImageUrl="~\/images\/main.JPG" Width="28px" \/>

相似回答