示例#1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         DNSABC.BLL.DNSABC_ProductPrice bll = new DNSABC.BLL.DNSABC_ProductPrice();
         if (Request.Params["id"] != null && Request.Params["id"].Trim() != "")
         {
             int Id = (Convert.ToInt32(Request.Params["id"]));
             bll.Delete(Id);
             Response.Redirect("list.aspx");
         }
     }
 }
示例#2
0
 private void ShowInfo(int Id)
 {
     DNSABC.BLL.DNSABC_ProductPrice   bll   = new DNSABC.BLL.DNSABC_ProductPrice();
     DNSABC.Model.DNSABC_ProductPrice model = bll.GetModel(Id);
     this.lblId.Text         = model.Id.ToString();
     this.lblProductID.Text  = model.ProductID.ToString();
     this.lblGradeID.Text    = model.GradeID.ToString();
     this.lblUserID.Text     = model.UserID.ToString();
     this.lblRealPrice.Text  = model.RealPrice.ToString();
     this.lblPrice.Text      = model.Price.ToString();
     this.lblMONTH.Text      = model.MONTH.ToString();
     this.lblUpdateTime.Text = model.UpdateTime.ToString();
     this.lblCreateTime.Text = model.CreateTime.ToString();
 }
示例#3
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtProductID.Text))
            {
                strErr += "产品ID 产品ID必须存在格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtGradeID.Text))
            {
                strErr += "等级ID 等级ID和用户ID必格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtUserID.Text))
            {
                strErr += "用户ID 等级ID和用户ID必格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtRealPrice.Text))
            {
                strErr += "原价 产品原价格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtPrice.Text))
            {
                strErr += "价格 销售价格格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtMONTH.Text))
            {
                strErr += "月数 产品订购时限格式错误!\\n";
            }
            if (!PageValidate.IsDateTime(txtUpdateTime.Text))
            {
                strErr += "更新时间格式错误!\\n";
            }
            if (!PageValidate.IsDateTime(txtCreateTime.Text))
            {
                strErr += "创建时间格式错误!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int      ProductID  = int.Parse(this.txtProductID.Text);
            int      GradeID    = int.Parse(this.txtGradeID.Text);
            int      UserID     = int.Parse(this.txtUserID.Text);
            int      RealPrice  = int.Parse(this.txtRealPrice.Text);
            int      Price      = int.Parse(this.txtPrice.Text);
            int      MONTH      = int.Parse(this.txtMONTH.Text);
            DateTime UpdateTime = DateTime.Parse(this.txtUpdateTime.Text);
            DateTime CreateTime = DateTime.Parse(this.txtCreateTime.Text);

            DNSABC.Model.DNSABC_ProductPrice model = new DNSABC.Model.DNSABC_ProductPrice();
            model.ProductID  = ProductID;
            model.GradeID    = GradeID;
            model.UserID     = UserID;
            model.RealPrice  = RealPrice;
            model.Price      = Price;
            model.MONTH      = MONTH;
            model.UpdateTime = UpdateTime;
            model.CreateTime = CreateTime;

            DNSABC.BLL.DNSABC_ProductPrice bll = new DNSABC.BLL.DNSABC_ProductPrice();
            bll.Add(model);
            ROYcms.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "add.aspx");
        }