Exemple #1
0
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            string typeid = context.Request.QueryString["typeId"];

            rr2.BLL.typeInfo blltype = new rr2.BLL.typeInfo();
            blltype.Delete(int.Parse(typeid));
            context.Response.Redirect("typeQuery.aspx?ts=delsucess");
        }
Exemple #2
0
 private void ShowInfo(int typeId)
 {
     rr2.BLL.typeInfo   bll   = new rr2.BLL.typeInfo();
     rr2.Model.typeInfo model = bll.GetModel(typeId);
     this.lbltypeId.Text   = model.typeId.ToString();
     this.lbltypeName.Text = model.typeName;
     this.lblext1.Text     = model.ext1;
     this.lblext2.Text     = model.ext2;
     this.lblext3.Text     = model.ext3;
 }
Exemple #3
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (this.txttypeName.Text.Trim().Length == 0)
            {
                strErr += "typeName不能为空!\\n";
            }
            if (this.txtext1.Text.Trim().Length == 0)
            {
                strErr += "ext1不能为空!\\n";
            }
            if (this.txtext2.Text.Trim().Length == 0)
            {
                strErr += "ext2不能为空!\\n";
            }
            if (this.txtext3.Text.Trim().Length == 0)
            {
                strErr += "ext3不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int    typeId   = int.Parse(this.lbltypeId.Text);
            string typeName = this.txttypeName.Text;
            string ext1     = this.txtext1.Text;
            string ext2     = this.txtext2.Text;
            string ext3     = this.txtext3.Text;


            rr2.Model.typeInfo model = new rr2.Model.typeInfo();
            model.typeId   = typeId;
            model.typeName = typeName;
            model.ext1     = ext1;
            model.ext2     = ext2;
            model.ext3     = ext3;

            rr2.BLL.typeInfo bll = new rr2.BLL.typeInfo();
            bll.Update(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "list.aspx");
        }