上一頁目錄下
A. word自動生成目錄,這後頁碼從第一頁開始,並鏈接上目錄。
在Word文檔中,前三頁是目錄,從第4頁開始設置頁碼,顯示頁碼數為1、2、3……,並且目錄右側的頁碼也從1、2、3……顯示,其設置方法:
1、將游標放在第4頁的首部,單擊頁面布---->分隔符---->分節符---->下一節;
B. 比如圖片網站,一堆圖片目錄,最下面有 第一頁/下一頁/上一頁/最後一頁 這個東西怎麼做/DR能做出來
ASP的話網上的例子很多。
C. 我想做一個ppt目錄,不知道怎樣做帶有「上一頁」「首頁」「下一頁」的小圖片做超鏈接的圖標,可以下不
這個要自己設
插入文字框,輸入:上一頁,下一頁,首頁等。。。要幾個就插幾個
然後移動相應位置
設超級鏈接,注意要點擊右鍵:設置動作設置,不是自定義動畫。
在動作設置里,有:
單擊滑鼠時,超鏈接到:下一張幻燈片。。。上一張。。。第一張。。。最後一張。。。等等
設置好的文字框,可以復制到其它PPT上,就一次性設好了。。。
不用一張張的設。。。
D. 在word文檔里 我自動生成目錄後顯示目錄是第一頁,下一頁是第二頁,頁碼依次排列,我想問一下如何讓目錄做
1、將游標移動到第一頁開頭位置,執行插入-引用-索引和目錄,點開選項卡,選中目錄子選項卡,勾選顯示頁碼和頁碼右對齊選項,對製表符前導符進行選擇,格式可以採用模板,顯示級別根據自己的實際情況選擇。
E. WORD裡面,在章節標題前插入分頁符,使章節轉到下一頁,但生成目錄時章節的頁碼還是上一頁的
插入「分隔符」——「分隔符類型:下一頁」
F. 網頁中怎麼「上一頁」、「下一頁」、「回子目錄頁」與「回首頁」的導覽按鈕
dreamweaver裡面有自動生成的,
G. 網頁中上一頁,下一頁,跳轉到。。的代碼是什麼要怎樣實現
<%
Const MaxPerPage=10
dim totalPut
dim CurrentPage
dim TotalPages
dim j
dim sql
if Not isempty(request.QueryString("page")) then
currentPage=Cint(request.QueryString("page"))
else
currentPage=1
end if
set rs=server.CreateObject("adodb.recordset")
if catid="" then
rs.open "select top 20 prename,company,mark,pretype,intro,other,type,viewnum,grade,predate,id,name,introce,price1,price2,discount,proctdate,pic from proct order by adddate desc",conn,1,1
else
rs.open "select predate,prename,company,mark,pretype,intro,name,other,type,viewnum,grade,id,introce,price1,price2,discount,proctdate,pic from proct where categoryid="&catid&" order by adddate desc",conn,1,1
end if
if err.number<>0 then
response.write "資料庫中暫時無數據"
end if
if rs.eof And rs.bof then
Response.Write "<p align='center' class='contents'><img src=images/sorry.gif border=0><br> 對不起,此分類暫時還沒有內容!</p>"
else
totalPut=rs.recordcount
if currentpage<1 then
currentpage=1
end if
if (currentpage-1)*MaxPerPage>totalput then
if (totalPut mod MaxPerPage)=0 then
currentpage= totalPut \ MaxPerPage
else
currentpage= totalPut \ MaxPerPage + 1
end if
end if
if currentPage=1 then
showContent
showpage totalput,MaxPerPage,"cat.asp"
else
if (currentPage-1)*MaxPerPage<totalPut then
rs.move (currentPage-1)*MaxPerPage
dim bookmark
bookmark=rs.bookmark
showContent
showpage totalput,MaxPerPage,"cat.asp"
else
currentPage=1
showContent
showpage totalput,MaxPerPage,"cat.asp"
end if
end if
end if
sub showContent
dim i
i=0
%>
……
本頁10個要顯示的內容
……
<%
i=i+1
if i>=MaxPerPage then Exit Do
rs.movenext
loop
rs.close
set rs=nothing
%>
<%
End Sub
Function showpage(totalnumber,maxperpage,filename)
Dim n
If totalnumber Mod maxperpage=0 Then
n= totalnumber \ maxperpage
Else
n= totalnumber \ maxperpage+1
End If %>
<form method=Post action=<% = filename %>?catid=<% = catid %>>
<%
If CurrentPage<2 Then %><div align="center">
首頁 上頁
<% Else %><div align="center">
<a href=<% = filename %>?page=1&catid=<% = catid %>>首頁</a>
<a href=<% = filename %>?page=<% = CurrentPage-1 %>&catid=<% = catid %>>上頁</a>
<%
End If
If n-currentpage<1 Then %>
下頁 尾頁
<% Else %>
<a href=<% = filename %>?page=<% = (CurrentPage+1) %>&catid=<% = catid %>>下頁</a>
<a href=<% = filename %>?page=<% = n %>&catid=<% = catid %>>尾頁</a>
<% End If %>
第 <b>
<% = CurrentPage %>
</b>頁 共 <b>
<% = n %>
</b>頁 共 <b>
<% = totalnumber %>
</b>品 每頁 <b>
<% = maxperpage %>
</b> 品 轉到第:
<input type='text' name='page' size=2 maxlength=10 value=<% = currentpage %>>頁
<input type='submit' class='contents' value='跳轉' name='cndok'></form>
<%
End Function
%>
希望你能用上。這是asp,別的程序看著根據這改改吧