温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:MyWebPages51aspx汉化最终版
当前文件:
MyWebPagesStarterKit/Administration/Sections.aspx,打开代码结构图
MyWebPagesStarterKit/Administration/Sections.aspx,打开代码结构图1<%@ Page Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="Sections.aspx.cs" Inherits="Administration_Sections" Title="Untitled Page" %> 2
<asp:Content ID="Content1" ContentPlaceHolderID="mainContent" Runat="Server"> 3
<table width="100%"> 4
<tr runat="server" id="trMessage"> 5
<td> 6
<asp:Label ID="lblMessage" CssClass="error" runat="server"></asp:Label> 7
</td> 8
</tr> 9
<tr> 10
<td> 11
<fieldset runat="server" id="fieldset1"> 12
<legend runat="server" id="legend1"><asp:Localize runat="server" Text="<%$ Resources:stringsRes, adm_Sections_MoveSection%>"></asp:Localize></legend> 13
<table width="100%"> 14
<tr><td> </td></tr> 15
<tr><td width="33%"></td><td width="33%"></td><td width="33%"></td></tr> 16
<tr> 17
<th><asp:Localize runat="server" Text="<%$ Resources:stringsRes, adm_Sections_SourcePage%>"></asp:Localize></th> 18
<th runat="server" id="thSection"><asp:Localize runat="server" Text="<%$ Resources:stringsRes, adm_Sections_Section%>"></asp:Localize></th> 19
<th runat="server" id="thTargetPage"><asp:Localize runat="server" Text="<%$ Resources:stringsRes, adm_Sections_TargetPage%>"></asp:Localize></th> 20
</tr> 21
<tr> 22
<td> 23
<asp:ListBox runat="server" ID="lstSourcePage" OnSelectedIndexChanged="lstSourcePage_SelectedIndexChanged" AutoPostBack="true" Rows="7" Width="95%"></asp:ListBox> 24
</td> 25
<td> 26
<asp:ListBox runat="server" ID="lstPageSections" OnSelectedIndexChanged="lstPageSections_SelectedIndexChanged" AutoPostBack="true" Rows="7" Width="95%"></asp:ListBox> 27
</td> 28
<td> 29
<asp:ListBox runat="server" ID="lstTargetPage" OnSelectedIndexChanged="lstTargetPage_SelectedIndexChanged" AutoPostBack="true" Rows="7" Width="95%"></asp:ListBox> 30
</td> 31
</tr> 32
<tr> 33
<td> 34
<asp:Button runat="server" ID="btnMove" OnClick="btnMoveSection_Click" Text="<%$ Resources:stringsRes, adm_Sections_Move%>"></asp:Button> 35
</td> 36
</tr> 37
</table> 38
</fieldset> 39
</td> 40
</tr> 41
</table> 42
</asp:Content> 43
44




