Exemplo n.º 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 + "");
            }
        }
 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>");
     }
 }