コード例 #1
0
        /// <summary>
        /// 保存
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void btnSave_Click(object sender, EventArgs e)
        {
            BLL.T_EFile_BLL   bll   = new DigiPower.Onlinecol.Standard.BLL.T_EFile_BLL();
            Model.T_EFile_MDL model = bll.GetModel(Common.ConvertEx.ToInt(ID));

            model = (Model.T_EFile_MDL)Comm.GetValueToObject(model, this.tbl);

            if (model != null && !String.IsNullOrEmpty(ID))
            {
                model.ArchiveListCellRptID = Convert.ToInt32(ID);
                model.FileListID           = Common.ConvertEx.ToInt(FileListID);
                bll.Update(model);

                if (Common.DNTRequest.GetQueryString("SuppleMent") == "")
                {
                    //更新状态
                    BLL.T_Other_BLL otherBLL = new DigiPower.Onlinecol.Standard.BLL.T_Other_BLL();
                    otherBLL.UpdateArchiveStatus(model.FileListID.ToString(), 10, "0");
                }
            }

            if (Common.DNTRequest.GetQueryString("SuppleMent") == "SuppleMent")  //表明是由案卷补录管理 页面过来
            {
                Response.Redirect("../SuppleMent/SmUpLoadEFileList.aspx?ID=" + FileListID + "&SuppleMent=SuppleMent");
            }
            else
            {
                Response.Redirect("UpLoadEFileList.aspx?sqlwhere=" + SqlWhere + "&PageIndex=" + pPageIndex + "&ID=" + FileListID + "&ProNo=" + ProNo + "");
            }
        }
コード例 #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     MyAddInit();
     if (!IsPostBack)
     {
         DigiPower.Onlinecol.Standard.BLL.T_EFile_BLL   bll   = new DigiPower.Onlinecol.Standard.BLL.T_EFile_BLL();
         DigiPower.Onlinecol.Standard.Model.T_EFile_MDL model = bll.GetModel(Common.ConvertEx.ToInt(ID));
         txtTitle.Text = model.Title;
     }
 }
コード例 #3
0
 protected void btnOK_Click(object sender, EventArgs e)
 {
     if (!String.IsNullOrEmpty(ID))
     {
         DigiPower.Onlinecol.Standard.BLL.T_EFile_BLL   bll   = new DigiPower.Onlinecol.Standard.BLL.T_EFile_BLL();
         DigiPower.Onlinecol.Standard.Model.T_EFile_MDL model = bll.GetModel(Common.ConvertEx.ToInt(ID));
         model.Title = this.txtTitle.Text;
         bll.Update(model);
         ClientScript.RegisterStartupScript(Page.GetType(), "close", "<script type='text/javascript'>reloadopener();</script>");
     }
 }
コード例 #4
0
        /// <summary>
        /// 绑定页面
        /// </summary>
        /// <param name="ID"></param>
        private void BindPage(string ID)
        {
            Model.T_EFile_MDL model = new DigiPower.Onlinecol.Standard.Model.T_EFile_MDL();

            BLL.T_EFile_BLL bll = new DigiPower.Onlinecol.Standard.BLL.T_EFile_BLL();

            model = bll.GetModel(Convert.ToInt32(ID));

            if (model != null)
            {
                DigiPower.Onlinecol.Standard.Web.Comm.SetValueToPage(model, this.tbl);
            }
        }