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

📄 designdelete.asp

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

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

<body>
<%
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 design"
rs.open sql,conn
%>
<table border="1" width="651" height="245">
	<tr>
		<td height="50" width="641" colspan="6">
		<p align="center"><b><font size="7">毕设查询</font></b></td>
	</tr>
	<tr>
		<td height="32" width="78">
		<p align="center">学号</td>
		<td height="32" width="214">
		<p align="center">课题</td>
		<td height="32" width="111">
		<p align="center">教师名称</td>
		<td height="32" width="116">
		<p align="center">教师职称</td>
		<td height="32" width="50">
		<p align="center">成绩</td>
		<td height="32" width="42">
		<p align="center">操作</td>
	</tr>
	<%while not rs.eof%>
	<tr>
		<td height="33" width="78"><%=rs(0)%></td>
		<td height="33" width="214"><%=rs(1)%></td>
		<td height="33" width="111"><%=rs(2)%></td>
		<td height="33" width="116"><%=rs(3)%></td>
		<td height="33" width="50"><%=rs(4)%></td>
		<td height="33" width="42">
		<p align="center"><a href="bisheshanchu.asp?sno=<%=rs(0)%>">删除</a></td>
	</tr>
	<%
	 rs.movenext
	 wend
	%>
	<tr>
		<td height="116" width="641" colspan="6"> </td>
	</tr>
</table>

</body>

</html>

⌨️ 快捷键说明

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