1.asp
来自「刚做的数据库和ASP做的班级管理系统效果不错」· ASP 代码 · 共 34 行
ASP
34 行
<html>
<head>
</head>
<body>
<%
dim cn,rs
set cn=Server.CreateObject("ADODB.Connection")
cn.open="Driver={SQL SERVER};Server=SUNZY;Database=pubs;UID=sa;PWD=;"
set rs=Server.CreateObject("ADODB.RecordSet")
rs.open "select * from test",cn
%>
<table border=1 align="right">
<tr>
<td width=100>ID</td>
<td width=100>PWD</td>
<td width=150>EMAIL</td>
</tr>
<%
Do while Not rs.Eof
%><tr>
<td width=100><%=rs(0) %></td>
<td width=100><%=rs(1) %></td>
<td width=150><%=rs(2) %></td></tr>
<% If not rs.Eof Then rs.MoveNext
Loop
%>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?