Example #1
0
 private void ShowInfo(int Id)
 {
     DNSABC.BLL.DNSABC_ProductModelCdn   bll   = new DNSABC.BLL.DNSABC_ProductModelCdn();
     DNSABC.Model.DNSABC_ProductModelCdn model = bll.GetModel(Id);
     this.lblId.Text           = model.Id.ToString();
     this.lblProductID.Text    = model.ProductID.ToString();
     this.lblisHost.Text       = model.isHost.ToString();
     this.lblisConnection.Text = model.isConnection.ToString();
     this.lblisBandwidth.Text  = model.isBandwidth.ToString();
     this.lblRemark.Text       = model.Remark;
 }
Example #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         DNSABC.BLL.DNSABC_ProductModelCdn bll = new DNSABC.BLL.DNSABC_ProductModelCdn();
         if (Request.Params["id"] != null && Request.Params["id"].Trim() != "")
         {
             int Id = (Convert.ToInt32(Request.Params["id"]));
             bll.Delete(Id);
             Response.Redirect("list.aspx");
         }
     }
 }
Example #3
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtProductID.Text))
            {
                strErr += "编号ID格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtisHost.Text))
            {
                strErr += "主机个数 0表示主机个数不限制格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtisConnection.Text))
            {
                strErr += "连接数 0表示连接数不限制格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtisBandwidth.Text))
            {
                strErr += "带宽 0表示带宽不限制格式错误!\\n";
            }
            if (this.txtRemark.Text.Trim().Length == 0)
            {
                strErr += "备注不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int    Id           = int.Parse(this.lblId.Text);
            int    ProductID    = int.Parse(this.txtProductID.Text);
            int    isHost       = int.Parse(this.txtisHost.Text);
            int    isConnection = int.Parse(this.txtisConnection.Text);
            int    isBandwidth  = int.Parse(this.txtisBandwidth.Text);
            string Remark       = this.txtRemark.Text;


            DNSABC.Model.DNSABC_ProductModelCdn model = new DNSABC.Model.DNSABC_ProductModelCdn();
            model.Id           = Id;
            model.ProductID    = ProductID;
            model.isHost       = isHost;
            model.isConnection = isConnection;
            model.isBandwidth  = isBandwidth;
            model.Remark       = Remark;

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