untitled-7.asp
来自「asp数据库系统开发:人力资源管理系统 代码完整」· ASP 代码 · 共 21 行
ASP
21 行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file=DataBase/conn.asp-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<%
set rs=server.CreateObject("adodb.recordset")
sql="select * from tb_letter_s where id like '1_'"
rs.open sql,conn,1,1
do while not rs.eof
response.Write(rs("duixiang"))
rs.movenext
loop
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?