-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSettings.ascx
23 lines (23 loc) · 1.26 KB
/
Settings.ascx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<%@ Control Language="vb" AutoEventWireup="false" Inherits="interApps.DNN.Modules.IdentitySwitcher.Settings" Codebehind="Settings.ascx.vb" %>
<%@ Register TagPrefix="dnn" TagName="Label" Src="~/controls/LabelControl.ascx" %>
<table cellspacing="0" cellpadding="2" border="0" summary="ModuleName Settings Design Table" id="tblDesignTable" runat="server">
<tr id="trHostSettings" runat="server">
<td class="SubHead" width="150"><dnn:label id="plIncludeHostUser" runat="server" controlname="cbIncludeHostUser" suffix=":" /></td>
<td valign="bottom" >
<asp:CheckBox ID="cbIncludeHostUser" runat="server" />
</td>
</tr>
<tr>
<td class="SubHead" width="150"><dnn:label id="plUseAjax" runat="server" controlname="cbUseAjax" suffix=":" /></td>
<td valign="bottom" >
<asp:CheckBox ID="cbUseAjax" runat="server" />
</td>
</tr>
<tr>
<td class="SubHead" width="150"><dnn:label id="plSortBy" runat="server" controlname="rbSortBy" suffix=":" /></td>
<td valign="bottom" >
<asp:RadioButtonList ID="rbSortBy" runat="server" CssClass="Normal" RepeatDirection="Horizontal" RepeatLayout="Flow">
</asp:RadioButtonList>
</td>
</tr>
</table>