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

📄 right.asp

📁 集合了学习asp的100个实例
💻 ASP
字号:
<body  bgcolor=AntiqueWhite>

<%

dim IID

IID=request("id")

set rs=server.createobject("adodb.recordset") 

conn = "DBQ=" + server.mappath("mybook.mdb") + ";DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};" 

if IID="" then

	sql="select * from mytable where id=1"

else

	sql="select * from mytable where id="&IID

end if

rs.open sql,conn,1,1

if not rs.EOF then

%>

<table width=600 align=left>

<tr><td bgcolor=#ffcc00 align=center><font size=+2><U><STRONG><%=rs("title")%></STRONG></U></font></td></tr>

<tr><td bgcolor=Linen><%=rs("content")%></td></tr></table>

<%

end if

set rs=nothing 

set conn=nothing

%>

</body>

⌨️ 快捷键说明

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