温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:高校教师档案管理系统项目源码
当前文件:
TeacherFileProject/Manager/SystemAdmin.aspx,打开代码结构图
TeacherFileProject/Manager/SystemAdmin.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SystemAdmin.aspx.cs" Inherits="Manager_Systemadmin" %> 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
9
</head> 10
<body topmargin="0" leftmargin="0"> 11
<form id="form1" runat="server"> 12
<table width="95%" border="0" cellpadding="3" cellspacing="1" align="center" ID="tabList" runat =server > 13
<tr align="center"> 14
<td align="left" style="font-weight: bolder; font-size: 14px; height: 20px;" background="../Images/右侧总标头.jpg"> 15
16
系统设置列表</td></tr> 17
18
<tr align =center > 19
20
<td align =center valign =top > 21
<asp:GridView ID="gvList" runat="server" AutoGenerateColumns="False" CellPadding="4" 22
ForeColor="#333333" GridLines="None" Height="100%" Width="100%" Font-Size="Small" PageSize="5" DataKeyNames ="id" OnRowCancelingEdit="gvList_RowCancelingEdit" OnRowEditing="gvList_RowEditing" OnRowUpdating="gvList_RowUpdating"> 23
<FooterStyle BackColor="#A6A1E0" Font-Bold="True" ForeColor="White" /> 24
<Columns> 25
<asp:BoundField DataField="isSearch" HeaderText="是否开放搜索" /> 26
<asp:BoundField DataField="isOpen" HeaderText="是否开放系统" /> 27
<asp:CommandField HeaderText="设置" ShowEditButton="True" /> 28
</Columns> 29
<RowStyle BackColor="#E8E7F9" ForeColor="#333333" /> 30
<EditRowStyle BackColor="#E8E7F9" /> 31
<SelectedRowStyle BackColor="#E8E7F9" Font-Bold="True" ForeColor="#333333" /> 32
<PagerStyle BackColor="#A6A1E0" ForeColor="White" HorizontalAlign="Center" /> 33
<HeaderStyle BackColor="#A6A1E0" Font-Bold="True" ForeColor="White" /> 34
<AlternatingRowStyle BackColor="White" ForeColor="#284775" /> 35
</asp:GridView> 36
37
</td> 38
</tr> 39
</table> 40
</form> 41
</body> 42
</html> 43



