📄 jiabanset.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="CheckLogin.asp"-->
<!--#include file="StudentConn.asp" -->
<%
Dim RS1
set RS1 = Server.CreateObject("ADODB.Recordset")
RS1.ActiveConnection = MM_StudentConn_STRING
RS1.Source = "SELECT * FROM TestName ORDER BY id Desc"
RS1.CursorType = 0
RS1.CursorLocation = 2
RS1.LockType = 3
RS1.Open()
RS1_numRows = 0
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>加班天数管理</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<META content="MSHTML 6.00.2600.0" Name=GENERATOR>
<link href="home.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
background-color: #f7f7ff;
}
.STYLE1 {
font-size: 18px;
color: #3366FF;
font-weight: bold;
}
.STYLE2 {font-size: 18px; color: #FF0000; font-weight: bold; }
-->
</style></HEAD>
<BODY text=#000000 leftMargin=0 topMargin=0>
<!--#include file="ScoreManage_top.asp"-->
<p align="center" class="STYLE1"><a href="ChuQinSet.asp">出勤设置 </a><a href="YeBanSet.asp">夜班设置</a> <a href="JiaBanSet.asp"><span class="STYLE2">加班设置</span></a> <a href="BinShiSet.asp">病事假设置</a> <a href="CountTest.asp">公式设置</a> <a href="ShowContent.asp">公式查看</a></p>
<form Name="form1" action="JiaBanSet1.asp" method="post">
<p align="center" class="msg"><%=Request("msg")%></p><br>
<TABLE width="400" border=1 align="center" cellPadding=8 cellSpacing=0 bordercolor="#CCCCFF" style="border-collapse:collapse">
<tr>
<td align="right"><span class="content">请选择要进行加班天数设置的月库</span></td>
<td align="left"><select name="SheetName">
<%
i = 0
While (NOT RS1.EOF)
if i = 0 then
response.Write "<option value='" & RS1.Fields.Item("SheetName").Value & "' selected >" & RS1.Fields.Item("TestName").Value & "</option>"
else
response.Write "<option value='" & RS1.Fields.Item("SheetName").Value & "'>" & RS1.Fields.Item("TestName").Value & "</option>"
end if
i = i + 1
RS1.MoveNext()
Wend
If (RS1.CursorType > 0) Then
RS1.MoveFirst
Else
RS1.Requery
End If
%>
</select></td>
</tr>
<tr align="center">
<td height="43" colspan="2"><input type="submit" Name="Submit" value="下一步"></td>
</tr>
</table>
</form></td>
</TR>
</TABLE>
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td>
<Iframe src="CopyRight.asp" width="760" height="100" marginheight="0" marginwidth="0" scrolling="NO" frameborder="0" name="CopyRight"></iframe>
</td>
</tr>
</table></BODY>
</HTML>
<%
RS1.Close()
Set RS1 = Nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -