温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:高校教师档案管理系统项目源码
当前文件:
TeacherFileProject/TeacherTroop/Teacher_List.aspx,打开代码结构图
TeacherFileProject/TeacherTroop/Teacher_List.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Teacher_List.aspx.cs" Inherits="TeacherTroop_Teacher_List" %> 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> 10
<form id="form1" runat="server"> 11
<table width="95%" border="0" cellpadding="3" cellspacing="1" align="center" ID="tabList"> 12
<tr> 13
<td align =center > 14
<asp:GridView ID="gvList" runat="server" AutoGenerateColumns="False" CellPadding="4" 15
ForeColor="#333333" GridLines="None" Height="100%" Width="100%" AllowPaging="True" Font-Size="Small" PageSize="5" OnPageIndexChanging="gvList_PageIndexChanging"> 16
<FooterStyle BackColor="#A6A1E0" Font-Bold="True" ForeColor="White" /> 17
<Columns> 18
<asp:BoundField DataField="userid" HeaderText="教师名称" /> 19
<asp:BoundField DataField="sex" HeaderText="性别" /> 20
<asp:BoundField DataField="college" HeaderText="所属单位" /> 21
<asp:BoundField DataField="class" HeaderText="授课专业" /> 22
<asp:HyperLinkField DataNavigateUrlFields="id" DataTextField ="id" HeaderText ="教师编号" DataNavigateUrlFormatString="~/PersonRecord/MyProfile.aspx?id={0}"/> 23
</Columns> 24
<RowStyle BackColor="#E8E7F9" ForeColor="#333333" /> 25
<EditRowStyle BackColor="#E8E7F9" /> 26
<SelectedRowStyle BackColor="#E8E7F9" Font-Bold="True" ForeColor="#333333" /> 27
<PagerStyle BackColor="#A6A1E0" ForeColor="White" HorizontalAlign="Center" /> 28
<HeaderStyle BackColor="#A6A1E0" Font-Bold="True" ForeColor="White" /> 29
<AlternatingRowStyle BackColor="White" ForeColor="#284775" /> 30
</asp:GridView> 31
</td> 32
</tr> 33
34
</table> 35
</form> 36
</body> 37
</html> 38



