forked from sachatrauwaen/OpenBlocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathToken_Settings.ascx
More file actions
19 lines (13 loc) · 805 Bytes
/
Token_Settings.ascx
File metadata and controls
19 lines (13 loc) · 805 Bytes
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="Satrabel.OpenBlocks.Token_Settings" Codebehind="Token_Settings.ascx.cs" %>
<%@ Register TagPrefix="dnn" TagName="Label" Src="~/controls/LabelControl.ascx" %>
<div class="dnnForm dnnSettings dnnClear" id="dnnSettings">
<fieldset>
<div class="dnnFormItem">
<dnn:label id="plField" runat="server" text="Token provider" helptext="Enter a value" controlname="ddlTokens" />
<asp:DropDownList ID="ddlTokens" runat="server" AutoPostBack="True" onselectedindexchanged="ddlTokens_SelectedIndexChanged">
</asp:DropDownList>
<asp:PlaceHolder ID="phConfigurator" runat="server"></asp:PlaceHolder>
</div>
</fieldset>
</div>
<asp:HiddenField ID="hfToken" runat="server" />