managelicenses.aspx

来自「community server 源码」· ASPX 代码 · 共 81 行

ASPX
81
字号
<%@ Page language="c#" Codebehind="ManageLicenses.aspx.cs" AutoEventWireup="false" Inherits="CommunityServer.ControlPanel.Tools.ManageLicenses" %>
<%@ Register TagPrefix="CA" Namespace="ComponentArt.Web.UI" Assembly="ComponentArt.Web.UI" %>
<%@ Register TagPrefix="CS" Namespace="CommunityServer.Controls" Assembly="CommunityServer.Controls" %>
<%@ Register TagPrefix="CP" Namespace="CommunityServer.ControlPanel.Controls" Assembly="CommunityServer.Web" %>

<cp:controlpanelselectednavigation selectednavitem="CommonTasks" runat="server" id="SelectedNavigation1" />
<cs:mpcontainer runat="server" id="MPContainer" thememasterfile="SetupControlPanelMaster.ascx">
	<cs:mpcontent id="DescriptionRegion" runat="server">
		<cp:resourcecontrol id="RegionTitle" runat="Server" resourcename="CP_Tools_ManageLicenses_Title" />
	</cs:mpcontent>
	<cs:mpcontent id="TaskRegion" runat="Server">
		<div class="CommonDescription">
			<cp:resourcecontrol id="Resourcecontrol1" runat="Server" resourcename="CP_Tools_ManageLicenses_Description" />
		</div>
		<div class="FixedWidthContainer">
		<CS:StatusMessage runat="server" id="Status" Visible="false" />
		
		<table cellspacing="0" border="0" cellpadding="0">
			<tr>
				<td class="CommonFormFieldName"><cp:ResourceControl runat="server" resourceName="CP_Tools_ManageLicenses_UploadLicenseFile" /></td>
				<td class="CommonFormField">
					<input type="file" runat="server" id="LicenseFile" />
				</td>
				<td class="CommonFormField">
					<asp:Button runat="server" id="UploadLicense" />
				</td>
			</tr>
		</table>
		
		<CS:RepeaterPlusNone id="Products" runat="server">
			<headertemplate>
				<table cellspacing="0" cellpadding="0" border="0" width="100%">
				<thead>
				<tr>
					<td class="CommonListHeaderLeftMost">
						<cp:resourcecontrol runat="Server" resourcename="CP_Tools_ManageLicenses_ProductList_Product" />
					</td>
					<td class="CommonListHeader">
						<cp:resourcecontrol runat="Server" resourcename="CP_Tools_ManageLicenses_ProductList_LicenseInstalled" ID="Resourcecontrol3"/>
					</td>
				</tr>
				</thead>
				<tbody>
			</headertemplate>
			<itemtemplate>
				<tr>
					<td class="CommonListCellLeftMost">
						<b><asp:HyperLink id="ProductName" runat="server" /></b>
						<div style="padding-top: 4px; padding-bottom: 4px;">
							<asp:Literal id="ProductDescription" runat="server" />
						</div>
						<div>
							<asp:HyperLink id="MoreInformation" runat="server" />
							<asp:Literal runat="server" id="PurchaseDelimiter"> | </asp:Literal>
							<asp:HyperLink id="Purchase" runat="server" />
							<asp:Literal runat="server" id="SupportDelimiter"> | </asp:Literal>
							<asp:HyperLink id="Support" runat="server" />
						</div>
					</td>
					<td class="CommonListCell" style="text-align: center;">
						<asp:Literal id="ProductLicenseInstalled" runat="server" />
					</td>
				</tr>
			</itemtemplate>
			<footertemplate>
				</tbody>
				</table>
			</footertemplate>
			<nonetemplate>
				<tr>
					<td class="CommonListCellLeftMost" colspan="3" align="center">
						<cp:resourcecontrol runat="server" ResourceName="CP_Tools_ManageLicenses_ProductList_NoProducts" />
					</td>
				</tr>
			</nonetemplate>
		</cs:repeaterplusnone>
		</div>
	</cs:mpcontent>
</cs:mpcontainer>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?