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

📄 top1.asp

📁 这是一个文章管理的网页源程序
💻 ASP
字号:
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0 align=center>
  <TBODY>
  <TR>
            <TD bgColor="<%=Tablebackcolor%>" height="85"> 
              <TABLE cellSpacing=1 cellPadding=4 width="100%" border=0>
        <TR>
                  
          <TD bgColor="<%=Tabletitlecolor%>" align="center"><b>近期热点文章</b></td>
              </tr>
              
        <tr bgcolor="<%=Tablebodycolor%>"> 
          <td > <font style=line-height:150%> 
            <% 
	sql="select top 10 * FROM article where daifa=1 order by reviewcount desc" 
	rs.open sql,conn,1,1 
	if rs.bof and rs.eof then 
		response.write "无更新文章" 
	else 
	do while not rs.eof     
%>
            <img src="IMAGES/dot.gif"> <a href="list.asp?id=<%=rs("articleid")%>" title="<%=rs("title")%>[点击:<%=rs("hits")%>次]" target=_top>  
            <%if len(rs("title"))>10 then%>
            <%=left(rs("title"),10)%>... 
            <%else%>
            <%=rs("title")%> 
            <%end if%>
            </a> <br>
                  <%    
	rs.movenext     
	loop 
	end if  
	rs.close   
%>
                  </font> </td>
              </tr>
            </table>
          </td>
        </tr>
  
      </table>
   
    

⌨️ 快捷键说明

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