Ejemplo n.º 1
0
 private void ShowInfo(int Id)
 {
     ESMonitor.BLL.Files   bll   = new ESMonitor.BLL.Files();
     ESMonitor.Model.Files model = bll.GetModel(Id);
     this.lblId.Text       = model.Id.ToString();
     this.lblStatCode.Text = model.StatCode;
     this.lblCapTime.Text  = model.CapTime.ToString();
     this.lblType.Text     = model.Type.ToString();
     this.lblFileName.Text = model.FileName;
     this.lblPath.Text     = model.Path;
 }
Ejemplo n.º 2
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (this.txtStatCode.Text.Trim().Length == 0)
            {
                strErr += "StatCode不能为空!\\n";
            }
            if (!PageValidate.IsDateTime(txtCapTime.Text))
            {
                strErr += "CapTime格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtType.Text))
            {
                strErr += "Type格式错误!\\n";
            }
            if (this.txtFileName.Text.Trim().Length == 0)
            {
                strErr += "FileName不能为空!\\n";
            }
            if (this.txtPath.Text.Trim().Length == 0)
            {
                strErr += "Path不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int      Id       = int.Parse(this.lblId.Text);
            string   StatCode = this.txtStatCode.Text;
            DateTime CapTime  = DateTime.Parse(this.txtCapTime.Text);
            int      Type     = int.Parse(this.txtType.Text);
            string   FileName = this.txtFileName.Text;
            string   Path     = this.txtPath.Text;


            ESMonitor.Model.Files model = new ESMonitor.Model.Files();
            model.Id       = Id;
            model.StatCode = StatCode;
            model.CapTime  = CapTime;
            model.Type     = Type;
            model.FileName = FileName;
            model.Path     = Path;

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