?? scoreinputstep1.asp
字號:
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="StudentConn.asp" -->
<!--#include file="CheckLogin.asp"-->
<%
set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_StudentConn_STRING
Recordset1.Source = "SELECT * FROM TestName ORDER BY ID DESC"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 3
Recordset1.Open()
Recordset1_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">
</HEAD>
<BODY text=#000000 bgColor=#f7f7ff leftMargin=0 topMargin=0>
<!--#include file="ScoreManage_Top.asp"-->
<TABLE width="760" border=0 align="center" cellPadding=0 cellSpacing=0>
<TR>
<TD align="center" bgcolor="#F7f7ff">
<table cellspacing=0 cellpadding=0 width="60%" border=0>
<tr>
<td align="center">
<form Name="form1" action="ScoreInputStep2.asp" method="post">
<br>
<span class="title"><font color="#FF0000"><%=Request("msg")%></font><br><br>
第一步:選擇月庫</span><br>
<br>
<table width="100%" border="1" style="border-collapse:collapse" align="center" cellpadding="5" cellspacing="1" bordercolor="#CCCCFF">
<tr>
<td width="32%" align="right" class="littletitle">請選擇月庫:</td>
<td width="68%">
<select Name="sheetName">
<%
i=0
While (NOT Recordset1.EOF)
if i=0 then
response.Write "<option value='" & Recordset1.Fields.Item("SheetName").Value & "' selected>" & Recordset1.Fields.Item("TestName").Value & "</option>"
else
response.Write "<option value='" & Recordset1.Fields.Item("SheetName").Value & "'>" & Recordset1.Fields.Item("TestName").Value & "</option>"
end if
i=i+1
Recordset1.MoveNext()
Wend
If (Recordset1.CursorType > 0) Then
Recordset1.MoveFirst
Else
Recordset1.Requery
End If
%></select><font color="#FF0000">*</font></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="hidden" name="msg" value="<%=Request("msg")%>">
<input type="submit" Name="Submit" value="下一步">
</td>
</tr>
</table>
</form></td>
</tr>
</table>
</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>
<%
Recordset1.Close()
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -