protected void Page_Load(object sender, EventArgs e)
        {
            if (null != Common.Common.NoHtml(Request.QueryString["action"]))
            {
                strAction = Common.Common.NoHtml(Request.QueryString["action"]);
            }
            if (null != Common.Common.NoHtml(Request.QueryString["id"]))
            {
                strID = Common.Common.NoHtml(Request.QueryString["id"]);
            }

            DAL.CMS.ArticleDAL dal = new DAL.CMS.ArticleDAL();
            switch (strAction)
            {
            case "del":
                if (dal.UpdateArticleState(strID))
                {
                    strMessage = "删除文章完成!";
                }
                else
                {
                    strMessage = "删除文章失败!";
                }
                break;

            default:
                break;
            }
            Response.Write(strMessage);
            Response.End();
        }
Exemple #2
0
        public void ShowArticleInfo(string strID)
        {
            DAL.CMS.ArticleDAL dal = new DAL.CMS.ArticleDAL();
            DataSet            ds  = dal.GetArticleDetail(strID);

            Model.CMS.CMS_Article model = DataConvert.DataRowToModel <Model.CMS.CMS_Article>(ds.Tables[0].Rows[0]);
            this.txtArticleTitle.Text          = model.Title;
            this.hd_content.Value              = model.Content;
            this.ddlCategory.SelectedIndex     = this.ddlCategory.Items.IndexOf(this.ddlCategory.Items.FindByValue(model.Category));
            this.ddlArticleIsTop.SelectedIndex = this.ddlArticleIsTop.Items.IndexOf(this.ddlArticleIsTop.Items.FindByValue(model.IsTop ? "是" : "否"));
            this.txtSummary.Text = model.Summary;
            this.txtOrder.Text   = model.Order.ToString();
            this.img0.Src        = "../../" + model.Pic;
            if (strAction == "show")
            {
                this.btnReset.Visible = false;
                this.btnSave.Visible  = false;
            }
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                string strSiteCode = string.Empty;
                string strCatID    = string.Empty;
                if (null == Request.QueryString["SiteCode"])
                {
                    strSiteCode = "VYIGO";
                }
                if (null == Request.QueryString["CatID"])
                {
                    strCatID = "VYIGO";
                }
                strSiteCode = Common.Common.NoHtml(Request.QueryString["SiteCode"].ToString());
                strCatID    = Common.Common.NoHtml(Request.QueryString["CatID"].ToString());

                DAL.CMS.ArticleDAL dalCat = new DAL.CMS.ArticleDAL();
                DataSet            dsArt  = dalCat.GetCategoryList(strSiteCode, strCatID);

                List <CMS_Article> liArtList = new List <CMS_Article>();
                if (null != dsArt && dsArt.Tables.Count > 0 && dsArt.Tables[0].Rows.Count > 0)
                {
                    foreach (DataRow row in dsArt.Tables[0].Rows)
                    {
                        CMS_Article model = DataConvert.DataRowToModel <CMS_Article>(row);
                        liArtList.Add(model);
                    }
                }

                string text = System.IO.File.ReadAllText(Server.MapPath("../ShopPage/helpdoc.html"));
                JinianNet.JNTemplate.TemplateContext context = new JinianNet.JNTemplate.TemplateContext();

                context.TempData["artList"] = liArtList;

                JinianNet.JNTemplate.Template t = new JinianNet.JNTemplate.Template(context, text);
                t.Render(Response.Output);
            }
        }
Exemple #4
0
        /// <summary>
        /// 单击"保存"按钮事件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void btnSave_Click(object sender, EventArgs e)
        {
            if (null == Session["strSiteName"] || null == Session["strSiteCode"] || null == Session["strLoginName"])
            {
                Response.Write("<script language=JavaScript>;parent.location.href='../Index.aspx';</script>");
                Response.End();
            }
            //上传图标
            string strIconFileName     = string.Empty; //图标路径
            string strIconSaveFileName = string.Empty; //网址路径

            try
            {
                if (!string.IsNullOrEmpty(this.file0.PostedFile.FileName))
                {
                    if (!System.IO.Directory.Exists(Server.MapPath("~") + @"/Images"))
                    {
                        System.IO.Directory.CreateDirectory(Server.MapPath("~") + @"/Images");
                    }
                    if (!System.IO.Directory.Exists(String.Format(@"{0}/Images/{1}", Server.MapPath("~"), Session["strSiteCode"].ToString())))
                    {
                        System.IO.Directory.CreateDirectory(String.Format(@"{0}/Images/{1}", Server.MapPath("~"), Session["strSiteCode"].ToString()));
                    }
                    string orignalName = this.file0.PostedFile.FileName;                      //获取客户机上传文件的文件名
                    string extendName  = orignalName.Substring(orignalName.LastIndexOf(".")); //获取扩展名

                    if (extendName != ".gif" && extendName != ".jpg" && extendName != ".jpeg" && extendName != ".png")
                    {
                        MessageBox.Show(this, "文件格式有误!");
                        return;
                    }//检查文件格式
                    string newName = String.Format("{0}_{1}{2}", DateTime.Now.Millisecond, file0.PostedFile.ContentLength, extendName);//对文件进行重命名
                    strIconFileName     = String.Format(@"{0}Images/{1}/{2}", Server.MapPath("~"), Session["strSiteCode"].ToString(), newName);
                    strIconSaveFileName = String.Format(@"Images/{0}/{1}", Session["strSiteCode"].ToString(), newName);
                    file0.PostedFile.SaveAs(strIconFileName);
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(this, "上传发生错误!原因是:" + ex.ToString());
            }
            DAL.CMS.ArticleDAL    dal         = new DAL.CMS.ArticleDAL();
            Model.CMS.CMS_Article modelUpdate = new Model.CMS.CMS_Article()
            {
                //文章ID
                ID = strID,
                //文章标题
                Title = this.txtArticleTitle.Text,
                //图标路径
                Pic     = strIconSaveFileName,
                Summary = this.txtSummary.Text,
                //文章内容
                Content = this.hd_content.Value,
                //文章类别
                Category = this.ddlCategory.SelectedValue,
                //是否置顶
                IsTop = (this.ddlArticleIsTop.Text == "是") ? true : false,
                Order = int.Parse(this.txtOrder.Text.ToString())
            };
            if (dal.UpdateArticleData(modelUpdate))
            {
                MessageBox.Show(this, "修改成功!");
            }
            else
            {
                MessageBox.Show(this, "修改失败!");
            }
        }