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

📄 toexamine.asp

📁 一个基于ASP和SQL数据库的学生信息管理系统,可以方便的实现学生信息的添加修改和删除,成绩信息的管理和学生的在线选课.
💻 ASP
字号:
<!--#include file="..\inc\conn.asp"-->
<!--#include file="..\inc\SessionCheck.asp"-->
<%
Call DBConnBegin()
dim id,stuid,stuname
id=trim(request("id"))
sSql="select * from stuinfo where [ID]='"&CStr(id)&"'"
oRs.open sSql,oConn,3,2
stuname=trim(oRs("StuName"))
stuid=trim(oRs("StuID"))
oRs.close
%>

<html><head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>学生信息管理网站——<%=stuname%>同学的考核</title>
<link rel="stylesheet" href="..\inc\style.css" type="text/css">
</head>

<body topmargin="0" leftmargin="0">
<!--#include file="..\CommonFile\pagehead.asp"-->
<table width="736" height="35" cellspacing="0" cellpadding="0">
  <td background="../images/top_1.jpg">&nbsp; <a href="Examine.asp" class="link">学生考核</a>
    | <a href="ExamineSearch.asp" class="link">考核查询</a></table>
 <form  method="POST" action="doexamine.asp?id=<%=id%>">
  <table border="0" width="700" cellspacing="0" cellpadding="0">
  <tr><td align="center"><font color="red"><%=stuname%></font>同学的考核处理:<select size="1" name="kaohe">
  <option value="优秀">优秀</option>
	<option value="良好">良好</option>
	<option value="中等">中等</option>
	<option value="合格">合格</option>
	<option value="不合格">不合格</option>
  </select>&nbsp;<input type="submit" value="确认" name="B1"></td></tr></table></form>
<%Call DBConnEnd()%>
<!--#include file="..\CommonFile\pagefoot.asp"-->
</body>
</html>

⌨️ 快捷键说明

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