ASP程序怎么调用分页标题

ASP程序怎么调用分页标题,比如说是一个栏目下的标题页数太多了,需要分页,但是分页的时候,页面上的标题都是一样,很多行业网站的分页标题很多的话,他们的标题会是第X页+栏目... ASP程序怎么调用分页标题,比如说是一个栏目下的标题页数太多了,需要分页,但是分页的时候,页面上的标题都是一样,很多行业网站的分页标题很多的话,他们的标题会是第X页+栏目的标题。是这样的,但是我的网站分页的时候标题都是一个,这个样子的话搜索引擎的收录就不太好了,请问一下,这种分页标题前面加页数是怎么写的,怎么调用,高手帮忙啊
我的QQ号码:583820177 可以加我,谢谢了啊
展开
 我来答
半智芹8
2010-12-28 · 超过85用户采纳过TA的回答
知道小有建树答主
回答量:343
采纳率:0%
帮助的人:170万
展开全部
<!--#include file="conn.asp"-->
<!--#include file="cook.asp"-->
<%on error resume next%>
<%

set rs=server.CreateObject("adodb.recordset")
sqlstr="select * from dirfile order by creatdate desc"
set rs=createobject("adodb.recordset")
rs.open sqlstr,conn,1,3
rowall=rs.recordcount
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>网站后台管理</title>
<link href="font.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
background-color: #f1f9fc;
}
-->
</style></head>

<body>

<form name="form1" method="post" action="dirfile.asp">
<table width="96%" border="0" cellpadding="5" cellspacing="1" bgcolor="#FFFFFF" >
<tr bgcolor="#CCCCCC">
<td width="40" height="30" bgcolor="BDE6F5"><strong>选择</strong></td>
<td width="250" bgcolor="BDE6F5"><strong>标 题</strong></td>
<td width="120" bgcolor="BDE6F5"><strong>所属大类</strong></td>
<td width="100" bgcolor="BDE6F5"><strong>更新日期</strong></td>
<td width="100" bgcolor="BDE6F5"><strong>热点新闻</strong></td>
<td width="100" bgcolor="BDE6F5"><strong>序列号</strong></td>
<td width="60" bgcolor="BDE6F5"><strong>修改</strong></td>
<td width="100" bgcolor="BDE6F5"><strong>删除</strong></td>
</tr>
<tr bgcolor="#FFFFFF">
<%if rs.eof then%>
<td height="30" colspan="7" bgcolor="f9f9f9"><strong><font color="#FF0000">无文章 信息!</font></strong></td>
</tr>
<%
else
num=request("num")
se=request("select1")
if se>0 then
num=se
end if
if num="" or not(isnumeric(num)) then num=1
if num<0 then num=1
page=cint(num)
if page=0 then page=1
rs.PageSize =50
if page>rs.PageCount then
num=1
page=1
end if
rs.AbsolutePage =page
for i=1 to (rs.PageSize)
%>
<tr bgcolor="#FFFFFF">
<td bgcolor="f9f9f9"><input name="delid" type="checkbox" id="delid" value="<%=rs("id")%>"> </td>
<td bgcolor="f9f9f9"><%=rs("name")%></td>
<td bgcolor="f9f9f9"> <a href="?classid=<%=rsv("classid")%>"><%=rsv("classname") %></a></td>
<% rsv.close %>
<td bgcolor="f9f9f9" class="B7C0C9"><%=formatdatetime(rs("creatdate"),vbshortdate)%></td>

<td bgcolor="f9f9f9" class="B7C0C9"><% if trim(rs("hot"))=1 then %>是<% else %>否 <% end if %></td>
<td bgcolor="f9f9f9" class="B7C0C9"><%=rs("number")%></td>
<td bgcolor="f9f9f9"><a href="dirfile_re.asp?id=<%=rs("id")%>" class="link_336699">修改</a></td>
<td height="30" bgcolor="f9f9f9"><a href="dirfile.asp?op=delete&id=<%=rs("Id") %>" onClick=" return confirm('您确定要删除吗?')">删除</a></td>

</tr>
<%
rs.MoveNext
if rs.EOF then exit for
next
end if
%>
<tr bgcolor="#FFFFFF">
<td height="30" colspan="5">
<input type="checkbox" name="checkit" value="checkbox" onClick="checkall(this.form);">
全选
<input name="Submit" type="submit" class="input" onClick=" return confirm('您确定要删除选中记录吗?')" value="删除选定记录"> <input type="hidden" name=num value="<%=page%>">
</td>
</tr>
</table>
</form>
<table width="90%" border="0" cellpadding="0" cellspacing="0">
<tr>
<form name="form2" method="post" action="dirfile.asp?num=-1">
<td><font color="#CC0000">
<%if page>1 then%>
<a href="Dirfile.asp?keyword=<%=keyword%>&proclass=<%=proclass%>">[首页]</a> <a href="Dirfile.asp?keyword=<%=keyword%>&proclass=<%=proclass%>&num=<%=cstr(page-1)%>">[上页]</a>
<%
else
if rs.PageCount >1 then
%>
<a href="Dirfile.asp?keyword=<%=keyword%>&proclass=<%=proclass%>">[首页]</a>
<%
end if
end if
if page<rs.PageCount then
%>
<a href="Dirfile.asp?keyword=<%=keyword%>&proclass=<%=proclass%>&num=<%=cstr(page+1)%>">[下页]</a> <a href="Dirfile.asp?keyword=<%=keyword%>&proclass=<%=proclass%>&num=<%=rs.PageCount %>">[尾页]</a>
<%
else
if rs.PageCount >1 then
%>
<a href="Dirfile.asp?keyword=<%=keyword%>&proclass=<%=proclass%>&num=<%=rs.PageCount %>">[尾页]</a>
<%
end if
end if
%>
当前位置:第
<% Response.Write(num) %>
页 共有:
<% Response.Write(rs.pagecount)%>
页 去第
<select name="select1">
<%for itotal=1 to rs.pagecount%>
<option>
<%response.write itotal%>
</option>
<% next %>
</select>

<input type="submit" name="cmdgo" value="go">
<input type="hidden" name="keyword2" value="<%=keyword%>">
<input type="hidden" name="proclass" value="<%'=proclass%>">
</span> </font> </td>
</form>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="50"> </td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="E1EEF7"><img src="../images/bg_00000.gif" width="4" height="4"></td>
</tr>
</table>
<!--#include file="bottom.asp"-->
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img src="../images/bg_00000.gif" width="1" height="1"></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
zhbmlong
2010-12-28 · TA获得超过133个赞
知道小有建树答主
回答量:403
采纳率:0%
帮助的人:333万
展开全部
这个一般是在页面的title中进行设置就可以了,各个分页的内容标题一样是没关系的,只要有页面翻转导航就行,就是上下翻页的按钮;
一般设置页面title:
<title>XXXXXXXX - Page <%=当前页%></title>
搜索引擎比较在意的就是页面的meta信息,包括title,keywords,description;其次是内容中关键字的分布,链接数,相关性等
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式