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();
        }