打開 /include/arc.listview.class.php 找到 (大約在673行)
else if($PageNo!=1 && $ctag->GetName()=='field' && $ctag->GetAtt('display')!='')
在它上面加入
else if($ctag->GetName()=="pageno")
{
$this->dtp->Assign($tagid,$this->PageNo);
}
else if($ctag->GetName()=="totalpage")
{
$this->dtp->Assign($tagid,ceil($this->TotalResult/$this->PageSize));
}
else if($ctag->GetName()=="totalresult")
{
$this->dtp->Assign($tagid,$this->TotalResult);
}
如圖
打開 /include/arc.taglist.class.php 找到 大概在 253 行
else if($ctag->GetName()=="pagelist")
在它上面加入
else if($ctag->GetName()=="pageno")
{
$this->dtp->Assign($tagid,$this->PageNo);
}
else if($ctag->GetName()=="totalpage")
{
$this->dtp->Assign($tagid,ceil($this->TotalResult/$this->PageSize));
}
else if($ctag->GetName()=="totalresult")
{
$this->dtp->Assign($tagid,$this->TotalResult);
}
如圖
打開 /include/arc.searchview.class.php 找到 (大概在542行)
else if($tagname=="field")
在它上面加入
else if($ctag->GetName()=="pageno")
{
$this->dtp->Assign($tagid,$this->PageNo);
}
else if($ctag->GetName()=="totalpage")
{
$this->dtp->Assign($tagid,ceil($this->TotalResult/$this->PageSize));
}
else if($ctag->GetName()=="totalresult")
{
$this->dtp->Assign($tagid,$this->TotalResult);
}
如圖
當前第{dede:pageno/}頁 共有{dede:totalpage/}頁 共有{dede:totalresult/}條數(shù)據(jù)
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢欄目列表、TAG列表和搜索結(jié)果單獨輸出當前頁碼、總頁碼、文檔總數(shù)