Example #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         DNSABC.BLL.DNSABC_Log bll = new DNSABC.BLL.DNSABC_Log();
         if (Request.Params["id"] != null && Request.Params["id"].Trim() != "")
         {
             int Id = (Convert.ToInt32(Request.Params["id"]));
             bll.Delete(Id);
             Response.Redirect("list.aspx");
         }
     }
 }
Example #2
0
 private void ShowInfo(int Id)
 {
     DNSABC.BLL.DNSABC_Log   bll   = new DNSABC.BLL.DNSABC_Log();
     DNSABC.Model.DNSABC_Log model = bll.GetModel(Id);
     this.lblId.Text         = model.Id.ToString();
     this.lblUserID.Text     = model.UserID.ToString();
     this.lblLogType.Text    = model.LogType.ToString();
     this.lblContent.Text    = model.Content;
     this.lblOperator.Text   = model.Operator;
     this.lblIp.Text         = model.Ip;
     this.lblAdminID.Text    = model.AdminID.ToString();
     this.lblObjectType.Text = model.ObjectType;
     this.lblObjectID.Text   = model.ObjectID;
     this.lblRemark.Text     = model.Remark;
     this.lblCreateTime.Text = model.CreateTime.ToString();
 }
Example #3
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtUserID.Text))
            {
                strErr += "用户ID格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtLogType.Text))
            {
                strErr += "日志类型格式错误!\\n";
            }
            if (this.txtContent.Text.Trim().Length == 0)
            {
                strErr += "内容不能为空!\\n";
            }
            if (this.txtOperator.Text.Trim().Length == 0)
            {
                strErr += "操作人不能为空!\\n";
            }
            if (this.txtIp.Text.Trim().Length == 0)
            {
                strErr += "操作IP 考虑反向代理的情况不能为空!\\n";
            }
            if (!PageValidate.IsNumber(txtAdminID.Text))
            {
                strErr += "【管理员字段】管理员ID格式错误!\\n";
            }
            if (this.txtObjectType.Text.Trim().Length == 0)
            {
                strErr += "业务编码【管理员字段】不能为空!\\n";
            }
            if (this.txtObjectID.Text.Trim().Length == 0)
            {
                strErr += "业务标识【管理员字段】不能为空!\\n";
            }
            if (this.txtRemark.Text.Trim().Length == 0)
            {
                strErr += "备注【管理员字段】不能为空!\\n";
            }
            if (!PageValidate.IsDateTime(txtCreateTime.Text))
            {
                strErr += "操作时间格式错误!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int      UserID     = int.Parse(this.txtUserID.Text);
            int      LogType    = int.Parse(this.txtLogType.Text);
            string   Content    = this.txtContent.Text;
            string   Operator   = this.txtOperator.Text;
            string   Ip         = this.txtIp.Text;
            int      AdminID    = int.Parse(this.txtAdminID.Text);
            string   ObjectType = this.txtObjectType.Text;
            string   ObjectID   = this.txtObjectID.Text;
            string   Remark     = this.txtRemark.Text;
            DateTime CreateTime = DateTime.Parse(this.txtCreateTime.Text);

            DNSABC.Model.DNSABC_Log model = new DNSABC.Model.DNSABC_Log();
            model.UserID     = UserID;
            model.LogType    = LogType;
            model.Content    = Content;
            model.Operator   = Operator;
            model.Ip         = Ip;
            model.AdminID    = AdminID;
            model.ObjectType = ObjectType;
            model.ObjectID   = ObjectID;
            model.Remark     = Remark;
            model.CreateTime = CreateTime;

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