36 lines
2.0 KiB
Plaintext
36 lines
2.0 KiB
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_footer.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_footer" %>
|
|
<footer class="fixed-bottom bg-dark text-light small textCondens p-1">
|
|
<div class="container-flow px-1">
|
|
<asp:UpdatePanel runat="server" ID="upnlFooter" UpdateMode="Conditional" ChildrenAsTriggers="true">
|
|
<ContentTemplate>
|
|
<div class="d-flex justify-content-between">
|
|
<div class="px-1">
|
|
<span class="d-none d-lg-inline">
|
|
<asp:Label ID="lblDateTime" runat="server" Text="..." />
|
|
| </span>
|
|
<asp:Label ID="lblCodOperatore" runat="server" Text="-" />
|
|
</div>
|
|
<div class="px-1 text-right">
|
|
<div class="d-flex flex-row-reverse">
|
|
<div class="px-1">
|
|
<asp:Label runat="server" ID="lblApp" Text="." />
|
|
</div>
|
|
<div class="px-1">
|
|
<asp:UpdateProgress ID="UpdateProgressDisplay" runat="server" DisplayAfter="5">
|
|
<ProgressTemplate>
|
|
<i class="fa fa-circle-o-notch fa-spin fa-fw text-primary" aria-hidden="true"></i>
|
|
<i class="fa fa-circle-o-notch fa-spin fa-fw text-info" aria-hidden="true"></i>
|
|
<i class="fa fa-circle-o-notch fa-spin fa-fw" aria-hidden="true"></i>
|
|
</ProgressTemplate>
|
|
</asp:UpdateProgress>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<asp:Timer ID="Timer1" runat="server" Interval="1000" OnTick="Timer1_Tick">
|
|
</asp:Timer>
|
|
</ContentTemplate>
|
|
</asp:UpdatePanel>
|
|
</div>
|
|
</footer>
|