protected void btnUpdate_Click(object sender, EventArgs e) { if (this.FormCheck()) { try { string sqlCheck = string.Format("select count(*) from GuestTypeBaseInfo where GuestType='{0}' and id<>{1}", txtGuestType.Text, Request["Id"]); if (Convert.ToInt32(DBHelp.ExeScalar(sqlCheck)) > 0) { base.ClientScript.RegisterStartupScript(base.GetType(), null, string.Format("<script>alert('客户类型名称[{0}],已经存在!');</script>", txtGuestType.Text)); return; } GuestTypeBaseInfo model = getModel(); if (this.goodSer.Update(model)) { base.ClientScript.RegisterStartupScript(base.GetType(), null, "<script>alert('修改成功!');</script>"); } else { base.ClientScript.RegisterStartupScript(base.GetType(), null, "<script>alert('修改失败!');</script>"); } } catch (Exception ex) { base.ClientScript.RegisterStartupScript(base.GetType(), null, "<script>alert('" + ex.Message + "!');</script>"); } } }
protected void Page_Load(object sender, EventArgs e) { if (!base.IsPostBack) { if (base.Request["Id"] != null) { this.btnAdd.Visible = false; GuestTypeBaseInfo model = this.goodSer.GetModel(Convert.ToInt32(base.Request["Id"])); this.txtGuestType.Text = model.GuestType; this.txtPayXiShu.Text = model.PayXiShu.ToString(); ddlXiShu.Text = model.XiShu.ToString(); } else { this.btnUpdate.Visible = false; } } }