復制代碼 代碼如下:
<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="轉到" 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>