student_score_add_result.asp

来自「一个修改过的ASP学籍管理系统,用javascript+ado写的」· ASP 代码 · 共 24 行

ASP
24
字号
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="936"%>
<!--#include file="conn.asp"-->
<!--#include file="verifyTeacher.asp"-->

<%
	var studentId = Request.Form("studentNo");
	var course = Request.Form("courseId");
	var sco = Request.Form("score");
	var type = Request.Form("type");
	
	var sql ="insert into score(courseId,studentId,score,chongxiu) values("+course+","+studentId+","+sco+",'"+type+"')";
	
	Conn.Execute(sql,0,0);
	
	 if(Conn.Errors.Count>0)
         {
			 Response.Redirect("errormessage.asp?message=请先添加成绩&toUrl=score_search_student_id.asp?StuId="+studentId);
         }
       else
        {
			 Response.Redirect("errormessage.asp?message=请先添加成绩&toUrl=score_search_student_id.asp?StuId="+studentId);
        }	
	
%>

⌨️ 快捷键说明

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