代碼如下:
<AspNet:AspNetPager ID="AspPages" runat="server" CustomInfoHTML="第%CurrentPageIndex%/%PageCount%頁,每頁%PageSize%條,共%RecordCount%條"
FirstPageText="首頁" LastPageText="尾頁" NextPageText="下一頁" AlwaysShow="true" CssClass="PP"
CurrentPageButtonClass="cpb" PageIndexBoxType="DropDownList" PrevPageText="上一頁"
ShowCustomInfoSection="Left" ShowPageIndexBox="Never" SubmitButtonText=" Go "
TextAfterPageIndexBox="頁" PageSize="10" TextBeforePageIndexBox="轉(zhuǎn)到" Height="25px"
NumericButtonCount="4" Width="98%" CenterCurrentPageButton="True" CustomInfoTextAlign="Left"
HorizontalAlign="Right" OnPageChanged="AspPages_PageChanged"
UrlRewritePattern="/Knowledge/Tag/%TagID%/%Category%/pv{0}" UrlPaging="True" EnableUrlRewriting="True">
</AspNet:AspNetPager>
protected void AspPages_PageChanged(object sender, EventArgs e)
{
string TagID = GetRequest.GetString("TagID");
AspPages.UrlRewritePattern = string.IsNullOrEmpty(TagID) ? "/Knowledge/Tag/%TagID%/%Category%/pv1" : "/Knowledge/Tag/%TagID%/%Category%/pv{0}";
BindRptChateau(TagID);
}
<rewrite url="^/Knowledge/Tag/(\d+)/(\d+)/pv(\d+)$" to="~/Search/SearchKnowledgeTag.aspx?Keywords=$1&TagID=$1&Category=$2&page=$3" processing="stop"></rewrite>
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com