-
Notifications
You must be signed in to change notification settings - Fork 7
/
Settings.ascx
19 lines (18 loc) · 1.06 KB
/
Settings.ascx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<%@ Control Language="C#" AutoEventWireup="true" Inherits="DNN.Modules.IdentitySwitcher.Settings" CodeBehind="Settings.ascx.cs" %>
<%@ Register TagPrefix="dnn" TagName="Label" Src="~/controls/LabelControl.ascx" %>
<asp:Panel runat="server">
<div id="trHostSettings" class="dnnFormItem" runat="server">
<dnn:label id="plIncludeHostUser" runat="server" controlname="cbIncludeHostUser" suffix=":" />
<asp:CheckBox ID="cbIncludeHostUser" runat="server" />
</div>
<div class="dnnFormItem">
<dnn:label id="plSortBy" runat="server" controlname="rbSortBy" suffix=":" />
<asp:RadioButtonList ID="rbSortBy" runat="server" CssClass="Normal" RepeatDirection="Vertical" RepeatLayout="Flow">
</asp:RadioButtonList>
</div>
<div class="dnnFormItem">
<dnn:label id="plSelectingMethod" runat="server" controlname="rbSelectingMethod" suffix=":" />
<asp:RadioButtonList ID="rbSelectingMethod" runat="server" CssClass="Normal" RepeatDirection="Vertical" RepeatLayout="Flow">
</asp:RadioButtonList>
</div>
</asp:Panel>