温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:明日网络考试系统源码
当前文件:
NetExam/HouAdmin/KechengInsert.aspx,打开代码结构图
NetExam/HouAdmin/KechengInsert.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="KechengInsert.aspx.cs" Inherits="HouAdmin_KechengInsert" %> 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
</head> 9
<body style="text-align: center"> 10
<form id="form1" runat="server"> 11
<div> 12
<br /> 13
<table style="width: 800px; height: 533px; background-image: url(../igm/后台登录页面.jpg);"> 14
<tr> 15
<td colspan="2" style="height: 87px"> 16
<br /> 17
<asp:Label ID="Label3" runat="server" ForeColor="Red" Text="管理课程信息" Font-Size="9pt"></asp:Label></td> 18
</tr> 19
<tr> 20
<td style="width: 227px; height: 152px; text-align: center; vertical-align: top;"> 21
<asp:TreeView ID="TreeView1" runat="server" ImageSet="Simple" NodeIndent="10" ShowLines="True" OnSelectedNodeChanged="TreeView1_SelectedNodeChanged"> 22
<ParentNodeStyle Font-Bold="False" /> 23
<HoverNodeStyle Font-Underline="True" ForeColor="#DD5555" /> 24
<SelectedNodeStyle 25
Font-Underline="True" HorizontalPadding="0px" VerticalPadding="0px" ForeColor="#DD5555" /> 26
<Nodes> 27
<asp:TreeNode Expanded="False" NavigateUrl="~/HouAdmin/admin.aspx" Text="管理员" Value="新建节点"> 28
</asp:TreeNode> 29
<asp:TreeNode Expanded="False" NavigateUrl="~/HouAdmin/zhuce_stu.aspx" Text="管理注册学生" 30
Value="管理注册学生"></asp:TreeNode> 31
<asp:TreeNode Expanded="False" NavigateUrl="~/HouAdmin/zhuanye_xinxi.aspx" Text="管理专业信息" 32
Value="管理专业信息"> 33
</asp:TreeNode> 34
<asp:TreeNode Expanded="False" NavigateUrl="~/HouAdmin/kecheng_xinxi.aspx" Text="管理课程信息" 35
Value="管理课程信息"> 36
</asp:TreeNode> 37
<asp:TreeNode Expanded="False" NavigateUrl="~/HouAdmin/taoti_xinxi.aspx" Text="管理套题信息" 38
Value="管理套题信息"> 39
</asp:TreeNode> 40
<asp:TreeNode NavigateUrl="~/HouAdmin/kaosheng_chengji.aspx" Text="管理考生成绩" Value="管理考生成绩"> 41
</asp:TreeNode> 42
<asp:TreeNode Expanded="False" NavigateUrl="~/HouAdmin/kaoshi_timu.aspx" Text="管理考试题目" 43
Value="管理考试题目"> 44
</asp:TreeNode> 45
<asp:TreeNode Expanded="False" NavigateUrl="~/HouAdmin/insert_shiti.aspx" Text="添加试题" 46
Value="添加试题"> 47
</asp:TreeNode> 48
<asp:TreeNode Text="退出系统" Value="退出系统"></asp:TreeNode> 49
</Nodes> 50
<NodeStyle Font-Names="Verdana" Font-Size="8pt" ForeColor="Black" HorizontalPadding="0px" 51
NodeSpacing="0px" VerticalPadding="0px" /> 52
</asp:TreeView> 53
</td> 54
<td style="width: 729px; height: 152px"> 55
<table> 56
<tr> 57
<td style="width: 100px; height: 26px;" align="right"> 58
<asp:Label ID="Label1" runat="server" Text="课程名称:" Font-Size="9pt"></asp:Label></td> 59
<td style="width: 100px; height: 26px;"> 60
<asp:TextBox ID="txtLessName" runat="server" Font-Size="9pt"></asp:TextBox></td> 61
62
</tr> 63
<tr> 64
<td style="width: 100px" align="right"> 65
<asp:Label ID="Label2" runat="server" Text="所属专业:" Font-Size="9pt"></asp:Label></td> 66
<td style="width: 100px"> 67
<asp:DropDownList ID="ddlProfession" runat="server" Width="134px" Font-Size="9pt"> 68
</asp:DropDownList></td> 69
</tr> 70
<tr> 71
<td style="width: 100px" align="right"> 72
</td> 73
<td style="width: 100px"> 74
<asp:Button ID="btnAdd" runat="server" OnClick="Button1_Click" Text="添加" Font-Size="9pt" /> 75
<asp:Button ID="btnBack" runat="server" OnClick="Button2_Click" Text="返回" Font-Size="9pt" /></td> 76
</tr> 77
</table> 78
</td> 79
</tr> 80
</table> 81
82
</div> 83
</form> 84
</body> 85
</html> 86



