websitepanel/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/SpaceSettingsSharedSSLSites.ascx
2011-07-13 16:07:32 -07:00

19 lines
No EOL
1.1 KiB
Text

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="SpaceSettingsSharedSSLSites.ascx.cs" Inherits="WebsitePanel.Portal.SpaceSettingsSharedSSLSites" %>
<%@ Register Src="UserControls/EditDomainsList.ascx" TagName="EditDomainsList" TagPrefix="uc1" %>
<%@ Register TagPrefix="wsp" TagName="CollapsiblePanel" Src="UserControls/CollapsiblePanel.ascx" %>
<wsp:CollapsiblePanel id="tblSharedSslSites" runat="server"
TargetControlID="SharedSslSitesPanel" meta:resourcekey="secSharedSslSites" Text="Shared SSL Web Sites"/>
<asp:Panel ID="SharedSslSitesPanel" runat="server" Height="0" style="overflow:hidden;">
<table>
<tr>
<td class="SubHead" width="150" valign="top" nowrap>
<asp:Label ID="lblSharedSslSites" runat="server" meta:resourcekey="lblSharedSslSites" Text="Shared SSL Sites:"></asp:Label>
</td>
<td class="Normal">
<uc1:EditDomainsList id="domainsList" runat="server" DisplayNames="false">
</uc1:EditDomainsList>
</td>
</tr>
</table>
</asp:Panel>