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

📄 set_rule.asp

📁 大学的综合测评
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="const.asp" -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link href="img/Style.css" rel="stylesheet" type="text/css" />
<title>无标题文档</title>
<style type="text/css">
<!--
.STYLE1 {color: #FFFFFF}
.STYLE2 {font-weight: bold}
-->
</style>
</head>
<body>
<%
 Dim rs1
		Set rs1 = Server.CreateObject("ADODB.Recordset")
		rs1.ActiveConnection = dbconn
		rs1.Source = "SELECT top 1  * FROM init"
		rs1.CursorType = 0
		rs1.CursorLocation = 2
		rs1.LockType = 1
		rs1.Open()
		if rs1.eof or rs1.bof then 
		response.Write("系统错误")
		response.End()
		end if
%>

<table width="80%" border="0" align="center" cellpadding="1" cellspacing="0" class="atable1">
  <tr>
    <td colspan="3" bgcolor="#333"><span class="STYLE1">&nbsp;&nbsp;评定规则和流程</span></td>
  </tr>
  <tr>
    <td width="81%" class="tdmenu">
	<ol><br />
	  <br />
	  <li>得分流程: <br />
	    <br />
	  (A)&nbsp;&nbsp;个人初始分:&nbsp;<span class="red"> <%=rs1(16)%></span><br />
	  <br />
	  (B)&nbsp; 个人申请&nbsp;-&gt;&nbsp;班级负责人审核&nbsp;=&gt;&nbsp;<span class="jushe">个人申请分</span> &nbsp;&nbsp;&nbsp;&nbsp;个人申请分最大值为:<span class="red">&nbsp;<%=rs1(2)%></span><br />
	      <br />
          (C) (部门1,部门2....部门n)对学生的加减分录入&nbsp;&nbsp;&nbsp;每各部门的最大值:<span class="red">&nbsp;<%=rs1(13)%>&nbsp;</span>&nbsp;n个部门得分总和的最大值:<span class="red">&nbsp;<%=rs1(15)%></span><br />
          <br />
          <span class="jushe">月综合分&nbsp;=&nbsp;个人基本分&nbsp;+&nbsp;个人申请分&nbsp;+&nbsp;部门加减分 </span><br /> 
          <br />
          (D)&nbsp;系统管理员对学生的特加分的录入<br />
          <br />
          <span class="jushe">学期综合分&nbsp;=&nbsp;学期月综合分平均值&nbsp;+&nbsp;特加分</span><br />
          <br />
          <br />
	  </li>
      <li>备注:<br />
    <br />
      得分超出最大值的一律取值为最大值<br />
      <br />
      系统得分精度的设置为小数点后<span class="jushe">1</span>位,最大存储位数<span class="jushe"> 3</span> 位 比如 89.2&nbsp;最高得分不能超过&nbsp;100&nbsp;.<br />
      <br />
      <br />
      </li>
	</ol></td>
  </tr>
  </table>
  <%
rs1.close
set rs1=nothing
%>
</body>
</html>
<%dbconn.close%>

⌨️ 快捷键说明

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