格式化DataPager链接

时间:2011-01-05 19:00:14

标签: asp.net datapager

实际上我想要的是在Asp.NET中由DataPager控件呈现的链接末尾添加#lastTab

由于我喜欢NumericalField,例如“1 2 3 ......”,我不想搞砸默认实现。

有人能帮助我吗?

感谢。

1 个答案:

答案 0 :(得分:0)

那么,

我不想诉诸jQuery and javascript,但他们是最后一次机会。

以下是代码:

    $("#ctl00_HomeMasterContentPlaceHolder_printReviews_printReviewPager a").each(function (index, value) {
        if ($(this).attr("href") != "undefined")
            $(this).attr("href", $(this).attr("href") + "#last");
    });

他们最终解决了所有问题。

感谢。