// ArticleComment articleComment = new ArticleComment();
        protected void Page_Load(object sender, EventArgs e)
        {
            string articleID = Request.QueryString["articleId"];

            articleManager.HitArticleSave(articleID);
            List <ArticleComment> articleComments = commentManager.AllCommentByArticleId(articleID);

            showAllComment.DataSource = articleComments;
            showAllComment.DataBind();

            List <Article> aArticleList = articleManager.GetDetailArticle(articleID);

            detailPost.DataSource = aArticleList;
            detailPost.DataBind();
        }