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

📄 exercise_details.aspx

📁 利用C#编写一个简单的考试系统。主要功能是
💻 ASPX
字号:
<%@ Page language="c#" Codebehind="exercise_details.aspx.cs" AutoEventWireup="false" Inherits="Teach_Manager.teacher.exercise_details" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
  <HEAD>
		<title>习题详细信息</title>
		<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
		<meta content="C#" name="CODE_LANGUAGE">
		<meta content="JavaScript" name="vs_defaultClientScript">
		<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
		
		<script language="javascript">
		function textCounter(field, maxlimit)
        {
            if (field.value.length > maxlimit)
                field.value = field.value.substring(0, maxlimit);
        }
		</script>
		
  </HEAD>
	<body MS_POSITIONING="GridLayout">
		<form id="Form1" method="post" runat="server">
			<FONT face="宋体">
				<table style="WIDTH: 600px; HEIGHT: 300px" align="center">
					<tbody>
						<tr>
							<td align="center">
								<fieldset><legend align="center"><font size="2">习题详细信息</font>
									</legend>
									<table style="WIDTH: 560px; HEIGHT: 98px" height="98" width="300">
										<tbody>
											<tr>
												<td noWrap><font size="2">习题名称:</font>
												</td>
												<td><asp:textbox id="exercise_name" Width="134px" ReadOnly="True" Runat="server"></asp:textbox></td>
												<td noWrap><font size="2">课程名称:</font>
												</td>
												<td><asp:textbox id="course_name" Width="169px" ReadOnly="True" Runat="server"></asp:textbox></td>
											</tr>
											<tr>
												<td noWrap><font size="2">习题内容:</font>
												</td>
												<td colSpan="3"><asp:textbox id="exercise_content" Width="440px" ReadOnly="True" Runat="server" TextMode="MultiLine"
														Height="160px"></asp:textbox></td>
											</tr>
											<tr>
												<td noWrap><font size="2">习题答案:</font>
												</td>
												<td colSpan="3"><asp:textbox id="exercise_solution" Width="440px" ReadOnly="True" Runat="server" TextMode="MultiLine"
														Height="100px"></asp:textbox></td>
											</tr>
											<tr>
												<td noWrap><font size="2">出题教师姓名:</font>
												</td>
												<td><asp:textbox id="teacher_name" ReadOnly="True" Runat="server"></asp:textbox></td>
												<td noWrap><font size="2">出题时间:</font>
												</td>
												<td><asp:textbox id="exercise_datetime" Width="169px" ReadOnly="True" Runat="server"></asp:textbox></td>
											</tr>
											<tr>
												<td noWrap><font size="2">图片:</font>
												</td>
												<td colSpan="2">
													<font size="2">
														<asp:linkbutton id="LinkButton1" runat="server">显示图片
												</asp:linkbutton>
													</font>
												</td>
												<td>
													<font size="2">
														<asp:Button ID="PutIn_sulution" Runat="server" Text="提交答案" Visible="False"></asp:Button>
													</font>
												</td>
											</tr>
										</tbody>
									</table>
								</fieldset>
							</td>
						</tr>
					</tbody>
				</table>
			</FONT>
		</form>
	</body>
</HTML>

⌨️ 快捷键说明

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