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

📄 right.asp

📁 客户管理系统使用ASP.NET和Access
💻 ASP
字号:
<!--#include file="islogin.asp"-->
<!--#include file="conn.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../css/css.css" rel="stylesheet" type="text/css">
<title></title>
<style type="text/css">
<!--
@import url("../style/admin.css");
.style1 {
	font-size: 18px;
	font-weight: bold;
}
.style2 {font-size: 18px; font-weight: bold; color: #0000FF; }
-->
</style></head>

<body>
<table width="680"  border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td width="340" height="25" valign="top"><table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" class="table_1">
      <tr>
        <td height="30" class="style2">&nbsp;&nbsp;最新的客户</td>
      </tr>
      <tr>
        <td bgcolor="#FFFFFF"><table width="100%" border="0" align="center" cellpadding="3" cellspacing="0" class="table_1_inc">
            <tr>
              <td height="300">&nbsp;</td>
            </tr>
        </table></td>
      </tr>
    </table></td>
    <td width="340" valign="top"><table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" class="table_1">
      <tr>
        <td height="30" class="style2">&nbsp;&nbsp;公司公告</td>
      </tr>
      <tr>
        <td bgcolor="#FFFFFF"><table width="100%" border="0" align="center" cellpadding="3" cellspacing="0" class="table_1_inc">
            <%
set rs=server.createobject("adodb.recordset")
sql="select top 20 id,title,up from GG order by up desc, id desc"
rs.open sql,conn,1,1
on error resume next
%>
 <% do while not rs.eof %>
            <tr <%if (ww mod 2)=1 then%>bgcolor="#F8F8FA"<%end if%> >
              <td>·<a href="RightNewsList.asp?id=<%=rs("id")%>"><%=rs("title")%></a></td>
            </tr>
<%
rs.movenext 
loop
%>
        </table></td>
      </tr>
    </table></td>
  </tr>
</table>
<br>
</body>
</html>

⌨️ 快捷键说明

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