📄 test1.asp
字号:
<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>
<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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -