Esempio n. 1
0
 private void BindData()
 {
     if (Request.QueryString["id"] != null)
     {
         NCPEP.Model.T_News model = new NCPEP.Model.T_News();
         NCPEP.Bll.T_News   bll   = new NCPEP.Bll.T_News();
         model = bll.GetModel(int.Parse(Request.QueryString["id"]));
         this.txtContent.Text        = model.Content;
         this.txtKeyword.Text        = model.Keyword;
         this.txtNewsSource.Text     = model.NewsSource;
         this.txtNewsSubheading.Text = model.NewsSubheading;
         this.txtNewsTitle.Text      = model.NewsTitle;
         this.txtNewsTypeId.Text     = model.NewsTypeId.ToString();//新闻类型
         this.ddlzt.SelectedValue    = model.ztbz;
         this.txtsj.Text             = model.CreateDate.ToString("yyyy-MM-dd");
         this.content1.Value         = model.NewsContent;
         this.HyperLink1.NavigateUrl = "../../newsimg/max/" + model.NewsImg;
         this.HyperLink1.Text        = model.NewsImg;
         NCPEP.Bll.T_Fujian fjbll = new NCPEP.Bll.T_Fujian();
         DataSet            ds    = fjbll.GetList("fid='" + model.Id + "'");
         if (ds.Tables[0].Rows.Count > 0)
         {
             this.repsfz.Visible    = true;
             this.repsfz.DataSource = ds;
             this.repsfz.DataBind();
         }
     }
 }
Esempio n. 2
0
 protected void Button1_Click(object sender, EventArgs e)
 {
     NCPEP.Model.T_News model = new NCPEP.Model.T_News();
     model.Content = Request.Form["Content"];
     try
     {
         model.CreateDate = DateTime.Parse(Request.Form["txtshijian"]);
     }
     catch { }
     model.Editor         = "";
     model.IsCheck        = 0;
     model.Keyword        = Request.Form["Keyword"];
     model.NewsContent    = Request.Form["NewsContent"];
     model.NewsFile       = "";
     model.NewsImg        = "";
     model.NewsSource     = "";
     model.NewsSubheading = "";
     model.NewsTitle      = Request.Form["NewsTitle"];
     try
     {
         model.NewsTypeId = int.Parse(Request.Form["NewsTypeId"]);
     }
     catch { }
     model.NumClicks = 0;
     model.OrgCode   = adminUser.OrgCode;
     NCPEP.Bll.T_News bll = new NCPEP.Bll.T_News();
     bll.Add(model);
     ClientScript.RegisterStartupScript(this.GetType(), "myscript", "<script>MyFun();</script>");
 }
Esempio n. 3
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            NCPEP.Model.T_News model = new NCPEP.Model.T_News();
            NCPEP.Bll.T_News   bll   = new NCPEP.Bll.T_News();
            if (Request.QueryString["id"] != null)
            {
                model = bll.GetModel(int.Parse(Request.QueryString["id"]));
            }
            model.Content = content1.Value;
            try
            {
                model.CreateDate = DateTime.Parse(this.txtsj.Text);
            }
            catch { }
            model.Editor      = adminUser.AdminName;
            model.IsCheck     = 0;
            model.Keyword     = this.txtKeyword.Text;
            model.NewsContent = this.content1.Value;

            model.Content        = this.txtContent.Text;
            model.NewsSource     = this.txtNewsSource.Text;
            model.NewsSubheading = this.txtNewsSubheading.Text;
            model.NewsTitle      = this.txtNewsTitle.Text;
            try
            {
                model.NewsTypeId = int.Parse(this.txtNewsTypeId.SelectedValue);
            }
            catch { }
            if (fileNewsImg.HasFile)
            {
                string newsImgName = new UpLoadNewsImgPlug().UploadImg("147", "147");
                model.NewsImg = newsImgName == string.Empty ? fileNewsImg.FileName : newsImgName;
            }

            model.NumClicks = 0;
            model.OrgCode   = adminUser.OrgCode;

            bool fid = bll.Update(model);

            if (fid)
            {
                if (!string.IsNullOrEmpty(this.hdfile.Value) && !string.IsNullOrEmpty(this.hdfilename.Value))
                {
                    string[]           strs     = hdfile.Value.Split('|');
                    string[]           strsname = hdfilename.Value.Split('|');
                    NCPEP.Bll.T_Fujian fjbll    = new NCPEP.Bll.T_Fujian();
                    for (int i = 1; i < strs.Length; i++)
                    {
                        NCPEP.Model.T_Fujian fjmodel = new NCPEP.Model.T_Fujian();
                        fjmodel.fid    = model.Id.ToString();
                        fjmodel.fjlx   = "";
                        fjmodel.fjname = strsname[i];
                        fjmodel.fjpath = strs[i];
                        fjbll.Add(fjmodel);
                    }
                }
            }
            MessageBox.ShowAndRedirect(this, "修改成功", "newslist.aspx");
        }
Esempio n. 4
0
        private void Bindfj()
        {
            if (Request.QueryString["id"] != null)
            {
                NCPEP.Model.T_News model = new NCPEP.Model.T_News();
                NCPEP.Bll.T_News   bll   = new NCPEP.Bll.T_News();
                model = bll.GetModel(int.Parse(Request.QueryString["id"]));

                NCPEP.Bll.T_Fujian fjbll = new NCPEP.Bll.T_Fujian();
                DataSet            ds    = fjbll.GetList("fid='" + model.Id + "'");
                if (ds.Tables[0].Rows.Count > 0)
                {
                    this.repsfz.Visible    = true;
                    this.repsfz.DataSource = ds;
                    this.repsfz.DataBind();
                }
            }
        }