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

📄 answer.asp

📁 本系统分两个子功能: 一:学生事务 统计学生的入学
💻 ASP
字号:
<html>

<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>answer </title>
</head>

<body>
<%
 dim conn,connstr
     connstr="Driver={sql server};UID=sa;PWD=sa;database=zikao;server=BILLGATES"
     set conn=server.createobject("ADODB.CONNECTION")
     conn.open connstr
     set rs=Server.CreateObject("ADODB.Recordset")
     sql="select * from liuyan"
     rs.open sql,conn
%>
<table border="1" width="554" height="102">
	<tr>
		<td height="36" width="403">
		<p align="center">主题</td>
		<td height="36" width="135" colspan="2">
		<p align="center">操作</td>
	</tr>
	<%while not rs.eof%>
	<tr>
		<td height="29" width="403">
		<p align="left"><%=rs(1)%></td>
		<td height="29" width="66">
		<p align="center"><a href="answerp.asp?ids=<%=rs(0)%>">回复</a></td>
		<td height="29" width="63">
		<p align="center"><a href="answerd.asp?ids=<%=rs(0)%>">删除</a></td>
	</tr>
	<%
	 rs.movenext
	 wend
	%>
	<tr>
		<td height="27" width="544" colspan="3"> </td>
	</tr>
</table>

</body>

</html>

⌨️ 快捷键说明

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