ASP.NET C# 连接SQL SERVER数据库 实现用户注册页面

前端:


<body>
    <form id="form1" runat="server">
    <div>
       <table style="width: 755px;" align="center" cellpadding="0" cellspacing="0">
            <tr>
                <td style="width: 755px;  height: 300px; text-align: center;">
                    &nbsp;<asp:Label ID="Label2" runat="server" Font-Size="9pt" ForeColor="Red" Text="新用户注册"
                        Width="65px"></asp:Label>
                    <table align="center" cellpadding="0" cellspacing="0">
                        <tr>
                            <td style="width: 200px; text-align: center">
                            </td>
                            <td style="width: 94px; text-align: center;">
                    <asp:Label ID="labUserID" runat="server" Text="用户ID" Font-Size="9pt" Width="66px"></asp:Label></td>
                            <td style="width: 225px; text-align: left;">
                    <asp:TextBox ID="txtUserID" runat="server" Font-Size="9pt" Width="123px"></asp:TextBox>
                    <asp:Button ID="btnTest" runat="server" Font-Size="9pt" OnClick="btnTest_Click" Text="检测用户ID" CausesValidation="False" /></td>
                            <td style="width: 149px; height: 2px;">
                    <asp:Label ID="Label1" runat="server" Font-Size="9pt" ForeColor="#FF0066" Text="(请输入1-10位有效数字)" Width="142px"></asp:Label></td>
                        </tr>
                        <tr>
                            <td style="width: 200px; text-align: center">
                            </td>
                            <td style="width: 94px; text-align: center;">
                    <asp:Label ID="labLoginName" runat="server" Text="用户登录名" Font-Size="9pt" Width="66px"></asp:Label></td>
                            <td style="width: 225px; text-align: left;">
                    <asp:TextBox ID="txtLoginName" runat="server" Font-Size="9pt" Width="123px"></asp:TextBox></td>
                            <td style="width: 149px; height: 25px;">
                    <asp:RequiredFieldValidator ID="rfvLoginName" runat="server" ControlToValidate="txtLoginName" Font-Size="9pt" Height="1px" Width="117px">用户登录名不能为空</asp:RequiredFieldValidator></td>
                        </tr>
                        <tr>
                            <td style="width: 200px; text-align: center">
                            </td>
                            <td style="width: 94px; text-align: center;">
                    <asp:Label ID="labSex" runat="server" Text="性别" Font-Size="9pt" Width="27px"></asp:Label></td>
                            <td style="width: 225px; text-align: left;">
                    <asp:DropDownList ID="ddlSex" runat="server" Width="127px" Font-Size="9pt">
                        <asp:ListItem>男</asp:ListItem>
                        <asp:ListItem>女</asp:ListItem>
                    </asp:DropDownList></td>
                            <td style="width: 149px">
                            </td>
                        </tr>
                         <tr>
                             <td style="width: 189px; text-align: center">
                             </td>
                            <td style="width: 94px; text-align: center;">
                    <asp:Label ID="labPwd" runat="server" Text="密码" Font-Size="9pt" Width="27px"></asp:Label></td>
                            <td style="width: 225px; text-align: left;">
                    <asp:TextBox ID="txtPwd" runat="server" Font-Size="9pt" TextMode="Password" Width="123px"></asp:TextBox></td>
                            <td style="width: 149px">
                    <asp:RequiredFieldValidator ID="rfvPwd" runat="server" ControlToValidate="txtPwd" Font-Size="9pt" Width="104px">用户密码不能为空</asp:RequiredFieldValidator></td>
                        </tr>
                         <tr>
                             <td style="width: 189px; height: 23px; text-align: center">
                             </td>
                            <td style="width: 94px; text-align: center; height: 23px;">
                    <asp:Label ID="labSecPwd" runat="server" Text="重复密码" Font-Size="9pt" Width="52px"></asp:Label></td>
                            <td style="width: 225px; text-align: left;">
                    <asp:TextBox ID="txtSecPwd" runat="server" Font-Size="9pt" TextMode="Password" 
                                    Width="123px" ondisposed="txtSecPwd_Disposed"></asp:TextBox></td>
                            <td style="width: 149px; height: 23px;">
                    <asp:CompareValidator ID="ccvPwd" runat="server"
                        Width="134px" ControlToCompare="txtPwd" ControlToValidate="txtSecPwd" Font-Size="9pt">用户输入的密码必须一致</asp:CompareValidator></td>
                        </tr>
                       <tr>
                             <td style="width: 189px; text-align: center">
                             </td>
                            <td style="width: 94px; text-align: center;">
                    <asp:Label ID="labEmail" runat="server" Text="Email地址" Font-Size="9pt" Width="57px"></asp:Label></td>
                            <td style="width: 225px; text-align: left;">
                    <asp:TextBox ID="txtEmail" runat="server" Font-Size="9pt" Width="123px"></asp:TextBox></td>
                            <td style="width: 149px">
                    <asp:RegularExpressionValidator ID="revEmail" runat="server" ControlToValidate="txtEmail" ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*" Font-Size="9pt" Width="132px">您输入的Email地址格式不正确,请重新输入</asp:RegularExpressionValidator></td>
                        </tr>
                         
                         <tr>
                             <td style="width: 189px; text-align: center">
                             </td>
                            <td style="width: 94px; text-align: center;"></td>
                            <td style="width: 225px; text-align: left;">
                                &nbsp;<asp:Button ID="btnRegister" runat="server" Text="注册" OnClick="btnRegister_Click" Font-Size="9pt" />
                                &nbsp;&nbsp; &nbsp; <asp:Button ID="btnCancel" runat="server" Text="重置" OnClick="btnCancel_Click" Font-Size="9pt" CausesValidation="False" />&nbsp;&nbsp; &nbsp;</td>
                            <td style="width: 149px; height: 24px;">
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
        </table>
    </div>
    </form>
</body>



using System;

using System.Data;

using System.Data.SqlClient;

using System.Configuration;

using System.Collections;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Web.UI.HtmlControls;

namespace register

{

    public partial class zhuce : System.Web.UI.Page

    {



        public string strConnection;

        SqlConnection conn;



        protected void Page_Load(object sender, EventArgs e)

        {

            



        }



        protected void btnRegister_Click(object sender, EventArgs e)

        {

            string strConnection = @"server=.;database=E:\REGISTER\REGISTER\APP_DATA\USER.MDF;User ID=sa;Password=123";//连接字体串

            conn = new SqlConnection(strConnection); //数据库连接对象

                string sqltest = "select * from ureg where UserID='" + this.txtUserID.Text + "'";

                //SqlConnection sqlconn = myCon.getCon();

                conn.Open();

                SqlCommand sqlcom = new SqlCommand(sqltest, conn);

                

                SqlDataReader read = sqlcom.ExecuteReader();

                read.Read();

                if (read.HasRows)

                {

                    if (this.txtUserID.Text.Trim() == read["UserID"].ToString().Trim())

                    {

                        Response.Write("<script language='javascript'>alert('该用户ID已经注册过');localtion='zhuce.aspx'</script>");

                        return;

                    }

                }

                conn.Close();

                string sqlstr = "insert into ureg "

                    + "(UserID,UserName,UserSex,UserPassword,UserEmail)"

                    + "values( '" + txtUserID.Text + "', '" + txtLoginName.Text + "','" + ddlSex.Text

                    + "','" + txtPwd.Text + "',   '" + txtEmail.Text       + "' )";

                conn.Open();

                SqlCommand cm2 = new SqlCommand(sqlstr, conn);

                 //sqlcom = new SqlCommand(sqlstr, conn);

                  cm2.ExecuteNonQuery();

                  conn.Close();




                Response.Redirect("SuccessReg.aspx");

            }



        protected void btnCancel_Click(object sender, EventArgs e)

        {

            txtUserID.Text = "";

            txtLoginName.Text = "";

            txtPwd.Text = "";

            txtSecPwd.Text = "";

            

            txtEmail.Text = "";

            

            txtUserID.Focus();

        }



        protected void btnTest_Click(object sender, EventArgs e)

        {



            string strConnection = @"server=.\SQLEXPRESS;database=user;uid=sa;pwd=123";//连接字体串

            conn = new SqlConnection(strConnection); //数据库连接对象

            string sqlstr = "select * from user where UserID='" + this.txtUserID.Text + "'";

            conn.Open();

            SqlCommand sqlcom = new SqlCommand(sqlstr, conn);

            SqlDataReader read = sqlcom.ExecuteReader();

            read.Read();

            if (read.HasRows)

            {

                if (this.txtUserID.Text.Trim() == read["UserID"].ToString().Trim())

                {

                    Response.Write("<script language='javascript'>alert('该用户ID已经注册过');localtion='UserRegister.aspx'</script>");

                    return;

                }

            }

            else

            {

                Response.Write("<script language='javascript'>alert('您可以进行正常注册');localtion='UserRegister.aspx'</script>");

            }

            read.Close();

            conn.Close();

        }



       

        

    }

}



  • 5
    点赞
  • 49
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值