⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 move_special.asp

📁 一个FLASH游戏的主页源码
💻 ASP
字号:
<!--#include file="Conn.asp"-->
<head>
<title></title>
<link href="Inc/Css.css" rel=stylesheet>
</head>
<body bgcolor="#FFFAEB" topmargin="0" leftmargin="0">
<table cellspacing="0" cellpadding="0">
<tr>
<%
sql="select top 10 * from Special order by SpecialID desc" 
Set rs=Server.CreateObject("ADODB.RecordSet") 
rs.open sql,conn,1,1
n=0

do while not rs.eof
SpecialName=rs("SpecialName")
SpecialPic=rs("SpecialPic")
SpecialID=rs("SpecialID")
%>
<td>
  <table border="0" width="100%" cellspacing="0" cellpadding="2">
    <tr>
      <td width="100%" height="127">
<table border="0" bgcolor="#E1E1E1" cellspacing="1" cellpadding="0">
        <tr>
          <td width="100%">
<table cellSpacing="1" cellPadding="0" width="100%" bgColor="#d7d7d7" border="0">
  <tr>
    <td width="100%">
      <table cellSpacing="1" cellPadding="0" width="100%" bgColor="#b2b2b2" border="0">
        <tr>
          <td width="100%">
<table cellSpacing="0" cellPadding="5" width="100%" border="0">
  <tr>
    <td width="100%" bgColor="#ffffff">
      <table cellSpacing="0" border="0">
        <tr>
          <td width="100%" bgColor="#666666">
      <a href="Show_Special.asp?SpecialID=<%=SpecialID%>" title="<%=SpecialName%>" target="_blank"><img src="SpecialPic/<%=SpecialPic%>" onmouseover="javascript:parent.frames[1].stopscroll();" onmouseout="javascript:parent.frames[1].startscroll();" border="0"></a></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
    </tr>
  </table>
</td>
<%
rs.movenext
n=n+1
if n>=10 then exit do
loop
rs.close
set rs=nothing
%>
</tr>
</table>
</body>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -