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

📄 fashion1.asp

📁 一个简单的网站制作,使用ASP,ACCE
💻 ASP
字号:

<html >
<head>

<title>无标题文档</title>
<style type="text/css">
<!--
body,td,th {
	color: #FF6699;
}
a:link {
	color: #FF0066;
}
-->
</style>
</head>

<body>

<% 
 
 dim id
 id=request.querystring("id")
	
	Dim db,rs,strSql	
	Set db=server.createobject("adodb.connection")
	db.open  "Dbq="&Server.Mappath("meirongDIY.mdb")&";Driver={Microsoft Access Driver (*.mdb)};"    
	 
	strSql="Select * From shishangshenghuo where id="&id&"  "  
	Set rs=db.Execute(strSql)
	
	%>
	
	<% 
		Do While Not rs.Eof                            
		%>



 
<table width="750" border="0">
  <tr>
    <td width="212" bgcolor="#CCCCFF">
	
	
	<%=rs("name")%>	</td>
    <td width="528"><img src="1.jpg" width="50" height="61"></td>
  </tr>
  <tr>
    <td colspan="2">
	
	<%=rs("body")%>
	</td>
  </tr>
</table>
<% 
			rs.MoveNext                            
		Loop
		%>





</head>

<body>
</body>
</html>

⌨️ 快捷键说明

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