Example #1
0
        private string Update(HttpContext context)
        {
            try
            {
                SysLogBll.Create("项目备案", "更新项目备案信息", adminUser.AdminName);
                NCPEP.Model.T_XmBeian dModels = GetModels(context);
                NCPEP.Bll.T_XmBeian   bll     = new NCPEP.Bll.T_XmBeian();

                if (bll.Update(dModels))
                {
                    return("更新成功!");
                }
                else
                {
                    return("更新失败请重新操作! ");
                }
            }
            catch (Exception ex)
            {
                SystemErrorPlug.ErrorRecord("时间:[" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "]类名:[" + this.GetType().Name + "],行号:[" + Component.GetLineNum().ToString() + "行],错误信息:[" + ex.Message + "]");
                return("更新失败请重新操作,错误代码:500 ");
            }
        }
Example #2
0
 private string Delete(HttpContext context)
 {
     try
     {
         SysLogBll.Create("项目备案", "删除项目备案信息操作", adminUser.AdminName);
         NCPEP.Bll.T_XmBeian bll = new NCPEP.Bll.T_XmBeian();
         int id = 0;
         try { id = int.Parse(context.Request.QueryString["id"].ToString()); }
         catch { }
         if (bll.Delete(id))
         {
             return("删除操作成功!");
         }
         else
         {
             return("删除失败请重新操作,错误代码:500 ");
         }
     }
     catch (Exception ex)
     {
         SystemErrorPlug.ErrorRecord("时间:[" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "]类名:[" + this.GetType().Name + "],行号:[" + Component.GetLineNum().ToString() + "行],错误信息:[" + ex.Message + "]");
         return(string.Empty);
     }
 }
Example #3
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            SysLogBll.Create("检证书修改", "检证书修改", adminUser.AdminName);
            NCPEP.Bll.T_Jzs   bll   = new NCPEP.Bll.T_Jzs();
            NCPEP.Model.T_Jzs model = new NCPEP.Model.T_Jzs();
            DataTable         dt    = bll.GetList(" binid='" + Request.QueryString["p"] + "'").Tables[0];

            if (dt.Rows.Count > 0)
            {
                foreach (DataRow dr in dt.Rows)
                {
                    bll.Delete(int.Parse(dr["id"].ToString()));
                }
            }
            try { model.beizhu = this.txtbeizhu.Value; }
            catch { }
            try { model.binid = Request.QueryString["p"].ToString(); }
            catch { }
            model.cjje     = this.txtcjje.Value;
            model.htbh     = this.txthtbh.Value;
            model.zcdate   = this.txtStartDatejzs.Value;
            model.zcdatez  = this.txtEndDatejzs.Value;
            model.beiyong  = this.txtzffs.Value.Trim();
            model.beiyong2 = this.txtjydj.Value.Trim();
            //int id = (int)dal.Create(GetModels(context));
            int id = bll.Add(model);

            if (id > 0)
            {
                MessageBox.Show(this, "更新成功!");
            }
            else
            {
                MessageBox.Show(this, "更新失败!");
            }
        }
Example #4
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            AdminUser adminUser = Session["SuperAdminUserSession"] as AdminUser;

            if (this.FileUpload1.HasFile)
            {
                string strtype = System.IO.Path.GetExtension(FileUpload1.FileName).ToLower();//ToLower转化为小写
                if (strtype == ".jpg" || strtype == ".gif" || strtype == ".jpeg" || strtype == ".png" || strtype == ".pdf")
                {
                    //获得上传文件的大小

                    int filesize = FileUpload1.PostedFile.ContentLength;

                    if (filesize > 1024 * 1024 * 25)
                    {
                        MessageBox.Show(this, "你上传的文件太大!");
                        return;
                    }
                    else
                    {
                        NCPEP.Model.T_FujianBiao model = new NCPEP.Model.T_FujianBiao();

                        try { }
                        catch { }
                        try
                        {
                            model.fid = Request.QueryString["p"];
                        }
                        catch { }
                        model.fjdynameid = this.txtFK_UploadTypeIndicatorId.SelectedValue;
                        string strname = Guid.NewGuid().ToString("N") + System.IO.Path.GetExtension(FileUpload1.FileName);
                        string strpath = Server.MapPath("~/Super/Scan/bsrffujian/" + model.fid + "");
                        if (!System.IO.Directory.Exists(strpath))
                        {
                            System.IO.Directory.CreateDirectory(strpath);
                        }
                        FileUpload1.SaveAs(strpath + "/" + strname);
                        //string ImgName = new UpLoadImgPlug().UploadImg("~/Super/Scan/lt/" + model.FK_LiceTranId + "/", 0);
                        //string imgUrl = HttpContext.Current.Server.MapPath("~/Super/Scan/lt/" + model.FK_LiceTranId + "/" + ImgName);
                        //string pdfUrl = "~/Super/Scan/lt/" + model.FK_LiceTranId + "/";
                        //new ProducePdfPlug().CreatePdf(imgUrl, pdfUrl, ImgName.Split('.')[0] + ".pdf");
                        model.fjpath = strname;
                        model.fjname = adminUser.AdminName;
                        model.fjlx   = "4";//意向受让方申请附件
                        try
                        {
                            SysLogBll.Create("意向受让方申请附件", "增加标的意向受让方申请附件上传附件操作", adminUser.AdminName);
                            NCPEP.Bll.T_FujianBiao bll = new NCPEP.Bll.T_FujianBiao();

                            if (bll.Add(model) > 0)
                            {
                                MessageBox.Show(this, "上传成功。");
                                BindFujian(Request.QueryString["p"]);
                            }
                            else
                            {
                                MessageBox.Show(this, "上传失败,请重新操作! ");
                            }
                        }
                        catch (Exception ex)
                        {
                            SystemErrorPlug.ErrorRecord("时间:[" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "]类名:[" + this.GetType().Name + "],行号:[" + Component.GetLineNum().ToString() + "行],错误信息:[" + ex.Message + "]");
                            MessageBox.Show(this, "添加失败请重新操作,错误代码:500 ");
                        }
                    }
                }
                else
                {
                    MessageBox.Show(this, "上传的附件格式后缀名只能为.jpg,.gif,.jpeg,.png,.pdf,其他格式暂不允许上传");
                    return;
                }
            }
            else
            {
                MessageBox.Show(this, "请选择附件进行上传");
                return;
            }
        }