㈠ aspcms分頁標簽調不出樣式,在網頁上只顯示[list:pagenumber len=5],替換後台文檔還是這樣,跪求答案
[list:pagenumber len=5]
list : 列表頁 專用
len: 顯示頁數
[list:pagenumber len=5]意思就是 在列表頁分頁 分頁顯示5頁 多的會在左右兩邊展示 上一頁 下一頁。
修改分頁數量 是直接改 len=5 或者 len=8 就是 《 1 2 3 4 5 》 《 4 5 6 7 8 》 這樣
如果是修改列表頁展示的 比如產品列表頁
{aspcms:list size=10 order=id} =》 裡面的 size=10 就是每頁展示的產品數量
[list:id] 編號
[list:link]鏈接
[list:i]計數
[list:content]內容
[list:downurl]下載地址
[list:titlecolor]標題顏色
[list:sortname]分類名稱
[list:sortlink]分類鏈接
[list:date]日期
[list:visits]瀏覽次數
[list:author]作者
[list:source]來源
[list:tag]tag標簽
[list:istop]置頂
[list:isrecommend]推薦
[list:isimage]圖片新聞
[list:isfeatured]特別推薦
[list:isheadline]頭條
[list:pic]圖片
{/aspcms:list}
㈡ aspcms分頁條調用標簽格式修改
第一種方法:用語言英文版,自動識別出來的。
如果在原來中文基礎上也可以修改:修改inc/AspCms_Language.asp里邊相應的文字,修改成英文的就可以了。找到:
if setting.Alias="cn" then
err_01="資料庫連接錯誤"
err_02="語言別名設置錯誤"
err_03="執行SQL語句錯誤"
err_04="st"&"ream對象實例創建失敗"
err_05="F"&"SO對象實例創建失敗"
err_06="載入文件失敗"
err_07="數據列表未指定主鍵"
err_08="數據列表未指定表"
err_09="寫入文件失敗"
err_10="創建文件夾失敗"
err_11="刪除文件夾失敗"
err_12="刪除文件失敗"
err_13="文件夾不存在"
err_14="移動文件夾失敗"
err_15="請設置默認語言"
err_16="模板文件不存在"
err_17="您當前所在用戶組無查看許可權!"
str_01="首頁"
str_02="尾頁"
str_03="上一頁"
str_04="下一頁"
str_05="頁次"
str_06="共"
str_07="頁"
str_08="對不起,該分類無任何記錄"
str_09="對不起,關鍵字"
str_10=" 無任何記錄"
str_11="您當前所在用戶組無查看許可權!"
str_12=""
str_13=""
str_14=""
str_15=""
str_16=""
str_17="轉到"
newspageInfo(0)="<font color='red'> 對不起,無任何內容 </font>"
channellistInfo(0)="<font color='red'> 對不起,該分類無記錄任何記錄 </font>":channellistInfo(1)="指定分類錯誤"
searchlistInfo(0)="對不起,沒有找到任何記錄"
pageRunStr(0)="頁面執行時間: ":pageRunStr(1)="秒 ":pageRunStr(2)="次數據查詢"
修改為:
err_01="Database Connection Error!"
err_02="Language alias setting error!"
err_03="Execute SQL statement error!"
err_04="St"&"ream object instance creation failed!"
err_05="F"&"SO object instance creation failed!"
err_06="Load file failed!"
err_07="Data list the primary key is not specified!"
err_08="Data list table is not specified!"
err_09="Write to file failed!"
err_10="Failed to create the folder!"
err_11="Failed to delete folder!"
err_12="Delete file failed!"
err_13="Folder does not exist!"
err_14="Move Folder fails!"
err_15="請設置默認語言"
err_16="模板文件不存在"
err_17="您當前所在用戶組無查看許可權!"
str_01="Home page"
str_02="Last page"
str_03="Previous page"
str_04="Next page"
str_05="Page"
str_06="Total"
str_07="Page"
str_08="Sorry, no records of the category"
str_09="Sorry, the keyword "
str_10="no record"
newspageInfo(0)="<font color='red'> Sorry, no content! </font>"
channellistInfo(0)="<font color='red'> Sorry, no content! </font>":channellistInfo(1)="Specifies the classification error!"
searchlistInfo(0)="Sorry, did not find any records"
pageRunStr(0)="Page execution time ":pageRunStr(1)=" seconds, ":pageRunStr(2)=" Data Query!"