温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:人才网初学者工具包源码
当前文件路径:JobSiteStarterKit/Admin/EducationLevelsManager.aspx

1<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" CodeFile="EducationLevelsManager.aspx.cs" Inherits="EducationLevelsManager_aspx" Title="Untitled Page" %> 2
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="server"> 3
<div align="center"> 4
<asp:Label ID="Label14" Runat="server" SkinID="FormHeading" Text="教育水平管理"></asp:Label> 5
<br /> 6
<br /> 7
<asp:DetailsView ID="DetailsView1" Runat="server" DataSourceID="ObjectDataSource1" 8
AllowPaging="True" AutoGenerateRows="False" DataKeyNames="EducationLevelID" GridLines="None" CellPadding="5" SkinID="AdminEntry"> 9
<PagerSettings Mode="NumericFirstLast"></PagerSettings> 10
<CommandRowStyle HorizontalAlign="Left"></CommandRowStyle> 11
<Fields> 12
<asp:CommandField ButtonType="Button" ShowDeleteButton="True" ShowInsertButton="True" 13
ShowEditButton="True"></asp:CommandField> 14
<asp:BoundField HeaderText="教育水平ID:" DataField="educationlevelid" ReadOnly="True" InsertVisible="False"> 15
<ItemStyle HorizontalAlign="Left"></ItemStyle> 16
<HeaderStyle CssClass="dataentryformlabel"></HeaderStyle> 17
</asp:BoundField> 18
<asp:BoundField HeaderText="教育水平名称 :" DataField="educationlevelname"> 19
<HeaderStyle CssClass="dataentryformlabel"></HeaderStyle> 20
</asp:BoundField> 21
</Fields> 22
<FieldHeaderStyle HorizontalAlign="Right"></FieldHeaderStyle> 23
<HeaderStyle HorizontalAlign="Right"></HeaderStyle> 24
<EditRowStyle HorizontalAlign="Left"></EditRowStyle> 25
</asp:DetailsView><br /> 26
<asp:ObjectDataSource ID="ObjectDataSource1" Runat="server" TypeName="JobSiteStarterKit.BOL.EducationLevel" DataObjectTypeName="JobSiteStarterKit.BOL.EducationLevel" 27
DeleteMethod="Delete" InsertMethod="Insert" SelectMethod="GetEducationLevels" 28
UpdateMethod="Update"> 29
</asp:ObjectDataSource> 30
</div> 31
</asp:Content> 32




