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

📄 untitled-1.asp

📁 ASP开发学生成绩查询管理系统,能满足毕业设计的要求-ASP student achievement for the development of the management system, des
💻 ASP
字号:
<!--#include file="include/conn.asp"-->

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>

<body>

<table width="246" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#006699">
  <tr>
    <td width="124"><div align="center">用户名</div></td>
    <td width="122"><div align="center">密码</div></td>
	<td width="122"><div align="center">编辑</div></td>
  </tr>
  <%
  dim sql
  sql="select * from user"
  rs.open sql,conn,1,1
  do while not rs.eof
  
%>
<tr  align="center">
     <td height="10" align="center"><% =rs("usename") %>
	 </td>
	 <td height="10" align="center"><% =rs("password") %>
	 </td>
	 <td height="10" align="center"><a href="admin_userziliao.asp">修改</a>
	</td> 
</tr>

<%
rs.movenext
loop
%>
</table>
</body>
</html>

⌨️ 快捷键说明

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