private void BindList()
        {
            Pagination page = new Pagination();

            page.PageIndex = this.pager.PageIndex;
            page.PageSize  = this.pager.PageSize;
            string tags = string.Empty;

            if (!string.IsNullOrEmpty(this.Page.Request.QueryString["keyword"]))
            {
                tags = this.Page.Request.QueryString["keyword"];
            }
            DbQueryResult favorites = CommentsHelper.GetFavorites(tags, page);

            this.favorites.DataSource = favorites.Data;
            this.favorites.DataBind();
            this.txtKeyWord.Text    = tags;
            this.pager.TotalRecords = favorites.TotalRecords;
        }