| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 403 人关注过本帖
标题:下面这段ASP程序
只看楼主 加入收藏
jsjzhch
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-10-27
收藏
 问题点数:0 回复次数:2 
下面这段ASP程序

谁能解开, 被烦了
<!--#include file="inc/config.asp"-->
<!--#include file="inc/conn.asp"-->
<!--#include file="inc/code.asp"-->
<!--#include file="inc/inc.asp"-->
<!--#include file="inc/SqlIn.Asp"-->
<%
start="家族联盟"
if not isempty(request("page")) then
currentPage=cint(request("page"))
else
currentPage=1
end if
menu=htmlencode(request("menu"))
if menu="" or (not isnumeric(menu)) or isnull(menu) then
menu="all"
end if
set rs = server.createobject("adodb.recordset")
call head()
%>
<TABLE cellSpacing=1 cellPadding=5 width=100% align=center class=sfbg1 border=0>
<tr class=sfbg2>
<td align="center"><b><FONT color=#ffffff>家族名称</FONT></b></td>
<td align="center"><b><FONT color=#ffffff>家族QQ群</FONT></b></td>
<td align="center"><b><FONT color=#ffffff>家族老大</FONT></b></td>
<td align="center"><b><FONT color=#ffffff>游戏版本</FONT></b></td>
<td align="center"><b><FONT color=#ffffff>主页</FONT></b></td>
<td align="center"><b><FONT color=#ffffff>地区线路</FONT></b></td>
<td align="center"><b><FONT color=#ffffff>家族创建日期</FONT></b></td>
<td align="center"><b><FONT color=#ffffff>支持度</FONT></b></td>
<td align="center"><b><FONT color=#ffffff>TOP排名</FONT></b> <b><FONT color=#ffff00>选择<input type=radio>进行投票</FONT></b></td>
</tr>
<%
'固定家族排名列表
sql="select top "&Rankings&" Gq_Jzdata.id,Gq_Jzdata.name,Gq_Jzdata.qq,Gq_Jzdata.master,Gq_Jzdata.bulid,Gq_Jzdata.peo,Gq_Jzdata.addr,Gq_Jzdata.web,Gq_Jzdata.tel,Gq_Jzdata.hits,Gq_Jzdata.gameid,Gq_GameType.game"
sql=sql&" from Gq_Jzdata,Gq_GameType where Gq_Jzdata.gameid=Gq_GameType.id"
sql=sql&" and Gq_Jzdata.ulock=true and Gq_Jzdata.top=true order by Gq_Jzdata.hits desc"
rs.open sql,conn,1,1
if rs.eof and rs.bof then
rs.close
else
do while not rs.eof
t=t+1
if t mod 2=1 then
Response.Write "<tr bgcolor=#FFFF00>"
else
Response.Write "<tr bgcolor=#FFFF55>"
end if
%>
<form method=POST action='Jz_Display.asp' target=_blank>
<input type=hidden name=IsSub value=YES><input type=hidden name=SS value=<%=rs("id")%>>
<td align=center><%=rs("name")%></td>
<td align=center><%=rs("QQ")%></td>
<td align=center><%=rs("master")%></td>
<td> [<%=rs("game")%>]<%=rs("TEL")%></td>
<td align="center"><%if rs("web")="" or rs("web")="无" or rs("web")="http://" then response.write "--" else response.write "<a href="&rs("web")&" target=_blank>访问</a>" end if%></td>
<td align="center"><%=rs("addr")%><%=rs("peo")%></td>
<td align="center"><%=formatdatetime(rs("Bulid"),1)%></td>
<td align="center"><INPUT id=hits maxLength=20 size=5 value=<%=rs("hits")%> name=hits></td>
<td align="center"><B><FONT color=#ff0000>人气第<%= t %>名·</FONT></B><input type=radio name=rc value=<%=rs("id")%>> <input type=submit value=支持 style=background-color:></td>
</form>
<%
Response.Write "</tr>"
if t>=Rankings then exit do
rs.movenext
loop
rs.close
end if
Response.Write "<TR class=sfbg1>"
Response.Write "<TD colSpan=9 align=center height=33>"
Response.Write "<b><FONT color=#ffff00>↓<FONT color=#ffffff>以下是最新加盟的家族列表</FONT>↓要显示在TOP-10里面获得更多人气吗?那就赶快发动全家族成员前来点击[<FONT color=#ffffff>支持该家族</FONT>]吧!当人气到达一定限度,会自动到顶部!</FONT></b></TD>"
Response.Write "</TR>"
Response.Write "<tr class=sfbg2>"
Response.Write "<td align='center'><b><FONT color=#ffffff>家族名称</FONT></b></td>"
Response.Write "<td align='center'><b><FONT color=#ffffff>家族QQ群</FONT></b></td>"
Response.Write "<td align='center'><b><FONT color=#ffffff>家族老大</FONT></b></td>"
Response.Write "<td align='center'><b><FONT color=#ffffff>游戏版本</FONT></b></td>"
Response.Write "<td align='center'><b><FONT color=#ffffff>主页</FONT></b></td>"
Response.Write "<td align='center'><b><FONT color=#ffffff>地区线路</FONT></b></td>"
Response.Write "<td align='center'><b><FONT color=#ffffff>家族创建日期</FONT></b></td>"
Response.Write "<td align='center'><b><FONT color=#ffffff>支持度</FONT></b></td>"
Response.Write "<td align='center'><b><FONT color=#ffffff>TOP排名</FONT></b> <b><FONT color=#ffff00>选择<input type=radio>进行投票</FONT></b></td>"
Response.Write "</tr>"
'非固定家族列表
sql="select Gq_Jzdata.id,Gq_Jzdata.name,Gq_Jzdata.qq,Gq_Jzdata.master,Gq_Jzdata.bulid,Gq_Jzdata.peo,Gq_Jzdata.addr,Gq_Jzdata.web,Gq_Jzdata.tel,Gq_Jzdata.hits,Gq_Jzdata.gameid,Gq_gametype.game "
sql=sql&" from Gq_Jzdata,Gq_gametype where Gq_Jzdata.gameid=Gq_gametype.id and Gq_Jzdata.top=false "
sql=sql&" and Gq_Jzdata.ulock=true order by Gq_Jzdata.hits desc"
rs.open sql,conn,1,1
if rs.eof and rs.bof then
rs.close
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,"jz_index.asp"
else
if (currentPage-1)*MaxPerPage<totalPut then
rs.move (currentPage-1)*MaxPerPage
showContent
showpage totalput,MaxPerPage,"jz_index.asp"
else
currentPage=1
showContent
showpage totalput,MaxPerPage,"jz_index.asp"
end if
end if
rs.close
end if
sub showContent
dim i
i=0
do while not rs.eof
%>
<TR bgColor=#FFFFCC onmouseover=javascript:this.bgColor='#FFCCCC' onmouseout=javascript:this.bgColor='#FFFFCC'>
<form method=POST action='Jz_Display.asp' target=_blank>
<input type=hidden name=IsSub value=YES><input type=hidden name=SS value=<%=rs("id")%>>
<td align="center"><%=rs("name")%></td>
<td align="center"><%=rs("QQ")%></td>
<td align="center"><%=rs("master")%></td>
<td> [<%=rs("game")%>]<%=rs("TEL")%></td>
<td align="center"><%if rs("web")="" or rs("web")="无" or rs("web")="http://" then response.write "--" else response.write "<a href="&rs("web")&" target=_blank>访问</a>" end if%></td>
<td align="center"><%=rs("addr")%><%=rs("peo")%></td>
<td align="center"><%=formatdatetime(rs("Bulid"),1)%></td>
<td align="center"><INPUT id=hits maxLength=20 size=5 value=<%=rs("hits")%> name=hits></td>
<td align="center"><input type=radio name=rc value=<%=rs("id")%>> <input type=submit value=支持该家族 style=background-color:></td>
</form>
</tr>
<%
i=i+1
if i>=MaxPerPage then exit do
rs.movenext
loop
rs.close
end sub
%>
</table>
<%
function showpage(totalnumber,maxperpage,filename)
dim n
if totalnumber mod maxperpage=0 then
n= totalnumber \ maxperpage
else
n= totalnumber \ maxperpage+1
end if
response.write "<TABLE cellSpacing=1 cellPadding=5 width=1002 align=center border=0><tr><form method=Post action="&filename&"?menu="&menu&"><td align=right>"

if CurrentPage<2 then
response.write "<font color=#FFFFFF>共"&totalnumber&"条记录&nbsp;首页 上页&nbsp;</font>"
else
response.write "<font color=#FFFFFF>共"&totalnumber&"条记录&nbsp;<a href="&filename&"?page=1&menu="&menu&">首页</a>&nbsp;"
response.write "<font color=#FFFFFF><a href="&filename&"?page="&CurrentPage-1&"&menu="&menu&">上页</a>&nbsp;"
end if

if n-currentpage<1 then
response.write "<font color=#FFFFFF>下页 尾页</font>"
else
response.write "<a href="&filename&"?page="&(CurrentPage+1)&"&menu="&menu&">"
response.write "<font color=#FFFFFF>下页</a> <a href="&filename&"?page="&n&"&menu="&menu&">尾页</a></font>"
end if
response.write "<font color=#FFFFFF>&nbsp;页次:</font><b><font color=#FFFFFF>"&CurrentPage&"/"&n&"</b>页</font> "
response.write "<font color=#FFFFFF>&nbsp;<b>"&maxperpage&"</b>条记录/页 </font>"
response.write "</td></form></tr></table>"
end function
set rs=nothing
call footer()
call CloseConn()
%>
</body>
</html>

搜索更多相关主题的帖子: menu ASP include file 
2007-10-27 14:43
BUBsky
Rank: 1
等 级:新手上路
帖 子:22
专家分:0
注 册:2007-8-28
收藏
得分:0 
解开是什么意思?
2007-10-27 14:44
jsjzhch
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-10-27
收藏
得分:0 
程序被锁定了
2007-10-27 14:48
快速回复:下面这段ASP程序
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023677 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved