private void ShowInfo(int _id) { litpwdtip.Text = "不填则不修改密码"; BLL.dt_manager bll = new BLL.dt_manager(); Model.dt_manager model = bll.GetModel(_id); ddlRoleId.SelectedValue = model.role_id.ToString(); ddlSection.SelectedValue = model.SectionId.ToString(); if (model.is_lock == 0) { cbIsLock.Checked = true; } else { cbIsLock.Checked = false; } txtUserName.Text = model.user_name; txtUserName.ReadOnly = true; txtUserName.Attributes.Remove("ajaxurl"); txtRealName.Text = model.real_name; txtTelephone.Text = model.telephone; txtEmail.Text = model.email; txtMaxNum.Text = model.wxNum.ToString(); ddlProvince.SelectedValue = model.province; ddlCity.SelectedValue = model.city; txtArea.Text = model.county; txtqq.Text = model.qq; txtEmail.Text = model.email; txtSortid.Text = MyCommFun.ObjToStr(model.sort_id); // model.sort_id; }
private bool DoEdit() { int _id = MyCommFun.Str2Int(lblid.Text); //地区 string prov = ddlProvince.SelectedItem.Value; string city = ddlCity.SelectedItem.Value; string dist = txtArea.Text.Trim(); bool result = false; BLL.dt_manager bll = new BLL.dt_manager(); Model.dt_manager model = bll.GetModel(_id); model.real_name = txtRealName.Text.Trim(); model.telephone = txtTelephone.Text.Trim(); model.email = txtEmail.Text.Trim(); model.qq = txtqq.Text; model.email = txtEmail.Text; model.province = prov; model.city = city; model.county = dist; if (bll.Update(model)) { AddAdminLog(MXEnums.ActionEnum.Edit.ToString(), "修改个人资料:" + model.user_name); //记录日志 result = true; } return(result); }
/// <summary> /// 判断管理员是否已经登录(解决Session超时问题) /// </summary> public bool IsAdminLogin() { //如果Session为Null if (Session[MXKeys.SESSION_ADMIN_INFO] != null) { return(true); } else { //检查Cookies string adminname = Utils.GetCookie("AdminName", "MxWeiXinPF"); string adminpwd = Utils.GetCookie("AdminPwd", "MxWeiXinPF"); if (adminname != "" && adminpwd != "") { BLL.dt_manager bll = new BLL.dt_manager(); Model.dt_manager model = bll.GetModel(adminname, adminpwd); if (model != null) { Session[MXKeys.SESSION_ADMIN_INFO] = model; return(true); } } } return(false); }
private bool DoEdit(int _id) { //地区 string prov = ddlProvince.SelectedItem.Value; string city = ddlCity.SelectedItem.Value; string dist = txtArea.Text.Trim(); bool result = false; BLL.dt_manager bll = new BLL.dt_manager(); Model.dt_manager model = bll.GetModel(_id); model.id = _id; model.SectionId = Convert.ToInt32(ddlSection.SelectedValue); model.role_id = int.Parse(ddlRoleId.SelectedValue); model.role_type = new BLL.manager_role().GetModel(model.role_id).role_type; if (cbIsLock.Checked == true) { model.is_lock = 0; } else { model.is_lock = 1; } //判断密码是否更改 if (txtPassword.Text.Trim() != "") { //获取用户已生成的salt作为密钥加密 model.password = DESEncrypt.Encrypt(txtPassword.Text.Trim(), model.salt); } model.real_name = txtRealName.Text.Trim(); model.telephone = txtTelephone.Text.Trim(); model.email = txtEmail.Text.Trim(); model.wxNum = int.Parse(txtMaxNum.Text); model.qq = txtqq.Text; model.email = txtEmail.Text; model.province = prov; model.city = city; model.county = dist; model.sort_id = MyCommFun.Str2Int(txtSortid.Text); if (bll.Update(model)) { AddAdminLog(MXEnums.ActionEnum.Edit.ToString(), "修改用户:" + model.user_name); //记录日志 result = true; } return(result); }
protected void btnSubmit_Click(object sender, EventArgs e) { string userName = txtUserName.Text.Trim(); string userPwd = txtPassword.Text.Trim(); if (userName.Equals("") || userPwd.Equals("")) { msgtip.InnerHtml = "请输入用户名或密码"; return; } if (Session["AdminLoginSun"] == null) { Session["AdminLoginSun"] = 1; } else { Session["AdminLoginSun"] = Convert.ToInt32(Session["AdminLoginSun"]) + 1; } //判断登录错误次数 if (Session["AdminLoginSun"] != null && Convert.ToInt32(Session["AdminLoginSun"]) > 5) { msgtip.InnerHtml = "错误超过5次,关闭浏览器重新登录!"; return; } BLL.dt_manager bll = new BLL.dt_manager(); Model.dt_manager model = bll.GetModel(userName, userPwd, true); if (model == null) { msgtip.InnerHtml = "用户名或密码有误,请重试!"; return; } // 保存当前的后台管理员 Session[MXKeys.SESSION_ADMIN_INFO] = model; Session.Timeout = 45; //写入登录日志 Model.siteconfig siteConfig = new BLL.siteconfig().loadConfig(); if (siteConfig.logstatus > 0) { new BLL.manager_log().Add(model.id, model.user_name, MXEnums.ActionEnum.Login.ToString(), "用户登录"); } //写入Cookies Utils.WriteCookie("DTRememberName", model.user_name, 14400); Utils.WriteCookie("AdminName", "MxWeiXinPF", model.user_name); Utils.WriteCookie("AdminPwd", "MxWeiXinPF", model.password); Response.Redirect("index.aspx"); return; }
private void ShowInfo(int _id) { lblid.Text = _id.ToString(); BLL.dt_manager bll = new BLL.dt_manager(); Model.dt_manager model = bll.GetModel(_id); lblUserName.Text = model.user_name; txtRealName.Text = model.real_name; txtTelephone.Text = model.telephone; txtEmail.Text = model.email; txtqq.Text = model.qq; ddlProvince.SelectedValue = model.province; ddlCity.SelectedValue = model.city; txtArea.Text = model.county; }
private void ShowInfo(int _id) { BLL.dt_manager bll = new BLL.dt_manager(); Model.dt_manager model = bll.GetModel(_id); lblUserName.Text = model.user_name; }