Пример #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     (this.Master as EditSite).PageTitle = "修改用户";
     if (!IsPostBack)
     {
         string code = Request.QueryString["code"];
         if (!string.IsNullOrEmpty(code))
         {
             var table = new BLL.UserBLL().GetUserList(code, "", "");
             if (table != null && table.Rows.Count > 0)
             {
                 tbCode.Text    = table.Rows[0]["code"].ToString();
                 tbPwd.Text     = table.Rows[0]["password"].ToString();
                 tbName.Text    = table.Rows[0]["name"].ToString();
                 tbSex.Text     = table.Rows[0]["sex"].ToString();
                 tbBirtday.Text = DateTime.Parse(table.Rows[0]["birthday"].ToString()).ToString("yyyy-MM-dd");
             }
             else
             {
                 Response.Write("<script>alert('用户信息不存在');window.location.href='UserList.aspx'</script>");
             }
         }
         else
         {
             Response.Write("<script>alert('用户信息不存在');window.location.href='UserList.aspx'</script>");
         }
     }
 }
Пример #2
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            //查询数据
            DataTable table = new BLL.UserBLL().GetUserList(tbCode.Text, tbName.Text, DropDownList1.Text);

            //设置数据源
            GridView1.DataSource = table;
            GridView1.DataBind();
        }
Пример #3
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            string code     = tbCode.Text;
            string pwd      = tbPwd.Text;
            string sex      = tbSex.Text;
            string name     = tbName.Text;
            string birthday = tbBirtday.Text;

            if (Page.IsValid)
            {
                int ret = new BLL.UserBLL().AddUser(code, pwd, name, sex, birthday);
                if (ret > 0)
                {
                    Response.Write("<script>alert('用户信息注册成功');window.location.href='Default.aspx'</script>");
                }
                else
                {
                    Response.Write("<script>alert('用户信息注册失败');</script>");
                }
            }
        }
Пример #4
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            string code     = tbCode.Text;
            string pwd      = tbPwd.Text;
            string sex      = tbSex.Text;
            string name     = tbName.Text;
            string birthday = tbBirtday.Text;

            List <IDbDataParameter> parameters = new List <IDbDataParameter>();

            //查询登录信息
            if (Page.IsValid)
            {
                int ret = new BLL.UserBLL().EditUser(code, pwd, name, sex, birthday);
                if (ret > 0)
                {
                    Response.Write("<script>alert('修改用户信息成功');window.location.href='UserList.aspx'</script>");
                }
                else
                {
                    Response.Write("<script>alert('修改用户信息失败');</script>");
                }
            }
        }