public void BindMerList()
    {
        int        count;
        CommentBLL cb = new CommentBLL();
        DataSet    ds = cb.GetPageCommentListByMerID(Convert.ToInt32(Session["user_ID"]), MerReplyPager.CurrentPageIndex, MerReplyPager.PageSize, out count);

        MerReplyPager.RecordCount = count;
        CommentListGrd.DataSource = ds;
        CommentListGrd.DataBind();
    }