温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:Asp.net在线考试系统源码及毕业设计论文
当前文件:
ExamOnline/Students/examonline.aspx[2K,2009-6-12 11:42:06],打开代码结构图
ExamOnline/Students/examonline.aspx[2K,2009-6-12 11:42:06],打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="examonline.aspx.cs" Inherits="Students_examonline" %> 2
3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4
5
<html xmlns="http://www.w3.org/1999/xhtml" > 6
<head runat="server"> 7
<title>在线考试</title> 8
<script type="text/javascript"> 9
function document.oncontextmenu() 10
{ 11
return false; //屏蔽系统的右键菜单 12
} 13
</script> 14
</head> 15
<body onload="getEndTime()"> 16
<form id="form1" runat="server"> 17
<div align="center"> 18
<table style="border-right: buttonface thin solid; border-top: buttonface thin solid; 19
border-left: buttonface thin solid; border-bottom: buttonface thin solid; table-layout: auto; border-collapse: separate; width: 800px;" width="800" cols="2"> 20
<tr> 21
<td style="width: 100px" align="center" valign="middle"> 22
<asp:Label ID="lblExamTitle" runat="server" Font-Bold="False" Font-Overline="False" Font-Size="XX-Large" Width="800px"></asp:Label></td> 23
</tr> 24
<tr> 25
<td style="width: 100px" align="left"> 26
<asp:Label ID="lblStuInfo" runat="server" Width="800px"></asp:Label></td> 27
</tr> 28
<tr> 29
<td align="left" style="width: 100px; height: 37px;"> 30
<hr width="100%" /> 31
</td> 32
</tr> 33
<tr> 34
<td style="width: 100px" align="left" colspan="2"> 35
<asp:Panel ID="panelContext" runat="server" style="width: 100%; height: 100%" Wrap="true"> 36
</asp:Panel> 37
</td> 38
</tr> 39
<tr> 40
<td align="center" style="width: 100px; height: 21px"> 41
<hr width="100%" /> 42
<input id="hidPaperID" type="hidden" runat="server" /> 43
<input id="hidUserID" type="hidden" runat="server" /></td> 44
</tr> 45
<tr> 46
<td style="width: 100px; height: 21px" align="center" valign="bottom"> 47
<asp:Button ID="btnSubmit" runat="server" Text="交卷" OnClick="btnSubmit_Click" /></td> 48
</tr> 49
</table> 50
</div> 51
<asp:ScriptManager ID="ScriptManager1" runat="server"> 52
<Services> 53
<asp:ServiceReference Path="WSEndTime.asmx" /> 54
</Services> 55
<Scripts> 56
<asp:ScriptReference Path="~/JS/antiCommon.js" /> 57
</Scripts> 58
</asp:ScriptManager> 59
</form> 60
</body> 61
</html> 62






