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

📄 untitled-3.asp

📁 实现了
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--#include file="conn.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
body,td,th {
	font-size: 12px;
}
a:link {
	color: #000000;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #000000;
}
a:hover {
	text-decoration: none;
	color: #FF0000;
}
a:active {
	text-decoration: none;
	color: #FF0000;
}
-->
</style>
</head>

<body>
<%
set rs=server.CreateObject("adodb.recordset")
rs.open"select*from orderdetail",conn
%>
<table border="0" cellpadding="0" cellspacing="4">
<%do while not rs.eof%>
 <tr>
 <td><%=(rs.Fields.Item("productName").Value)%></td>
 <td><%=(rs.Fields.Item("price").Value)%></td>
 <td><%=(rs.Fields.Item("quantity").Value)%></td>
 </tr>
<%
 rs.movenext
 loop
 rs.close
 conn.close
 %>
</table>
<div align="center"><br>
    <font color="#00FF66" size="+4" face="Courier New, Courier, mono">
    <marquee>
    欢迎你的光临谢谢!
    </marquee>
    </font>
  </marquee> 
  </br>
  
</div>
</body>
</html>

⌨️ 快捷键说明

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