Ejemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         DNSABC.BLL.DNSABC_Cdn bll = new DNSABC.BLL.DNSABC_Cdn();
         if (Request.Params["id"] != null && Request.Params["id"].Trim() != "")
         {
             int Id = (Convert.ToInt32(Request.Params["id"]));
             bll.Delete(Id);
             Response.Redirect("list.aspx");
         }
     }
 }
Ejemplo n.º 2
0
 private void ShowInfo(int Id)
 {
     DNSABC.BLL.DNSABC_Cdn   bll   = new DNSABC.BLL.DNSABC_Cdn();
     DNSABC.Model.DNSABC_Cdn model = bll.GetModel(Id);
     this.lblId.Text           = model.Id.ToString();
     this.txtProductID.Text    = model.ProductID.ToString();
     this.txtUserID.Text       = model.UserID.ToString();
     this.txtDomain.Text       = model.Domain;
     this.txtPASSWORD.Text     = model.PASSWORD;
     this.txtStarTime.Text     = model.StarTime.ToString();
     this.txtEndTime.Text      = model.EndTime.ToString();
     this.txtisHost.Text       = model.isHost.ToString();
     this.txtisConnection.Text = model.isConnection.ToString();
     this.txtisBandwidth.Text  = model.isBandwidth.ToString();
     this.txtState.Text        = model.State.ToString();
     this.txtRemark.Text       = model.Remark;
     this.txtUpdateTime.Text   = model.UpdateTime.ToString();
     this.txtCreateTime.Text   = model.CreateTime.ToString();
 }
Ejemplo n.º 3
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtProductID.Text))
            {
                strErr += "产品ID格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtUserID.Text))
            {
                strErr += "用户ID格式错误!\\n";
            }
            if (this.txtDomain.Text.Trim().Length == 0)
            {
                strErr += "域名 域名是唯一的不能为空!\\n";
            }
            if (this.txtPASSWORD.Text.Trim().Length == 0)
            {
                strErr += "域名密码 随机生成w3e4r2r6r6t4不能为空!\\n";
            }
            if (!PageValidate.IsDateTime(txtStarTime.Text))
            {
                strErr += "注册时间格式错误!\\n";
            }
            if (!PageValidate.IsDateTime(txtEndTime.Text))
            {
                strErr += "到期时间格式错误!\\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 (!PageValidate.IsNumber(txtState.Text))
            {
                strErr += "解析状态 0为停用格式错误!\\n";
            }
            if (this.txtRemark.Text.Trim().Length == 0)
            {
                strErr += "备注不能为空!\\n";
            }
            if (!PageValidate.IsDateTime(txtUpdateTime.Text))
            {
                strErr += "更新时间格式错误!\\n";
            }
            if (!PageValidate.IsDateTime(txtCreateTime.Text))
            {
                strErr += "创建时间格式错误!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int      Id           = int.Parse(this.lblId.Text);
            int      ProductID    = int.Parse(this.txtProductID.Text);
            int      UserID       = int.Parse(this.txtUserID.Text);
            string   Domain       = this.txtDomain.Text;
            string   PASSWORD     = this.txtPASSWORD.Text;
            DateTime StarTime     = DateTime.Parse(this.txtStarTime.Text);
            DateTime EndTime      = DateTime.Parse(this.txtEndTime.Text);
            int      isHost       = int.Parse(this.txtisHost.Text);
            int      isConnection = int.Parse(this.txtisConnection.Text);
            int      isBandwidth  = int.Parse(this.txtisBandwidth.Text);
            int      State        = int.Parse(this.txtState.Text);
            string   Remark       = this.txtRemark.Text;
            DateTime UpdateTime   = DateTime.Parse(this.txtUpdateTime.Text);
            DateTime CreateTime   = DateTime.Parse(this.txtCreateTime.Text);


            DNSABC.Model.DNSABC_Cdn model = new DNSABC.Model.DNSABC_Cdn();
            model.Id           = Id;
            model.ProductID    = ProductID;
            model.UserID       = UserID;
            model.Domain       = Domain;
            model.PASSWORD     = PASSWORD;
            model.StarTime     = StarTime;
            model.EndTime      = EndTime;
            model.isHost       = isHost;
            model.isConnection = isConnection;
            model.isBandwidth  = isBandwidth;
            model.State        = State;
            model.Remark       = Remark;
            model.UpdateTime   = UpdateTime;
            model.CreateTime   = CreateTime;

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