Пример #1
0
        protected void Button2_Click(object sender, EventArgs e)
        {
            Button btn = (Button)sender;     //注意控件类型的转换

            string id = btn.CommandArgument; //获取得到控件绑定的对应值

            NCPEP.Bll.T_FujianBiao bllfujian = new NCPEP.Bll.T_FujianBiao();
            bllfujian.Delete(int.Parse(id));
            BindFujian(Request.QueryString["p"]);
        }
Пример #2
0
        protected void BindFujian(string strid)
        {
            NCPEP.Bll.T_FujianBiao bllfujian = new NCPEP.Bll.T_FujianBiao();
            DataTable dtfujian = bllfujian.GetListByType(" a.fid='" + strid + "'");

            if (dtfujian.Rows.Count > 0)
            {
                this.GridView1.DataSource = dtfujian;
                this.GridView1.DataBind();
            }
        }
Пример #3
0
        protected void BindFujian(string strid)
        {
            NCPEP.Bll.T_FujianBiao bllfujian = new NCPEP.Bll.T_FujianBiao();
            string    strsql   = "select * from T_BidContractScan where FK_BidId='" + strid + "'";
            DataTable dtfujian = DbHelperSQL.Query(strsql).Tables[0];

            if (dtfujian.Rows.Count > 0)
            {
                this.GridView1.DataSource = dtfujian;

                this.GridView1.DataBind();
            }
            else
            {
                this.Label2.Text = "暂无数据";
            }
        }
Пример #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;
            }
        }