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

📄 showreti.asp

📁 学生学籍信息 这是一个针对学生学籍信息的管理软件
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Connections/assistconn.asp" -->
<%
Dim showset__MMColParam
showset__MMColParam = "1"
If (Request.QueryString("ID") <> "") Then 
  showset__MMColParam = Request.QueryString("ID")
End If
%>
<%
Dim showset
Dim showset_numRows

Set showset = Server.CreateObject("ADODB.Recordset")
showset.ActiveConnection = MM_assistconn_STRING
showset.Source = "SELECT * FROM assistab WHERE ID = " + Replace(showset__MMColParam, "'", "''") + ""
showset.CursorType = 0
showset.CursorLocation = 2
showset.LockType = 1
showset.Open()

showset_numRows = 0
%>
<html>
<head>
<title>[ 欢迎使用 Cute Assistant v1.0 学籍信息管理系统::休、复、停、退学详细信息 ]</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body background="images/bkg02.jpg">
<p align="center"><img src="images/catitle.gif" width="333" height="82"></p>
<table width="77%" border="1" align="center" bgcolor="#66CCFF">
  <tr>
    <td>“<%=(showset.Fields.Item("name").Value)%>”的休、复、停、退学记录详细情况:</td>
  </tr>
  <tr>
    <td>  <%=(showset.Fields.Item("retireinfo").Value)%></td>
  </tr>
</table>
</body>
</html>
<%
showset.Close()
Set showset = Nothing
%>

⌨️ 快捷键说明

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