-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathViewIdentitySwitcher.ascx
37 lines (37 loc) · 2.11 KB
/
ViewIdentitySwitcher.ascx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<%@ Control Language="vb" Inherits="interApps.DNN.Modules.IdentitySwitcher.ViewIdentitySwitcher"
AutoEventWireup="false" Explicit="True" CodeBehind="ViewIdentitySwitcher.ascx.vb" %>
<%@ Register Assembly="DotNetNuke" Namespace="DotNetNuke.UI.WebControls" TagPrefix="DNN" %>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div class="is_SearchRow">
<div class="is_SearchLabel">
<asp:Label ID="lblSearch" CssClass="SubHead" resourcekey="Search" runat="server" /></div>
<div class="is_SearchTask">
<asp:TextBox ID="txtSearch" runat="server" CssClass="NormalTextBox is_SearchText" /><span
class="is_SearchSeperator"></span><asp:DropDownList ID="ddlSearchType" runat="server"
CssClass="NormalTextBox is_SearchMenu" />
<DNN:CommandButton ID="cmdSearch" runat="server" ResourceKey="cmdSearch" ImageUrl="~/images/icon_search_16px.gif"
DisplayLink="false" CausesValidation="false" />
</div>
</div>
<div class="is_Clear">
</div>
<div class="is_SwitchRow">
<div class="is_SwitchLabel">
<asp:Label ID="lblSwitchToIdentity" runat="server" CssClass="SubHead" resourcekey="SwitchToIdentity" /></div>
<div class="is_SwitchTask">
<asp:DropDownList ID="cboUsers" runat="server" CssClass="NormalTextBox is_SwitchMenu" />
<DNN:CommandButton ID="cmdSwitch" runat="server" ResourceKey="cmdSwitch" ImageUrl="~/images/action_refresh.gif"
DisplayLink="false" CausesValidation="false" />
</div>
</div>
</ContentTemplate>
</asp:UpdatePanel>
<div class="is_Clear">
<asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1">
<ProgressTemplate>
<div class="is_progress">
<asp:ImageMap ID="imgProgress" runat="server" ImageUrl="~/images/progressbar.gif">
</asp:ImageMap></div>
</ProgressTemplate>
</asp:UpdateProgress>