29 lines
1.6 KiB
Plaintext
29 lines
1.6 KiB
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/Bootstrap.Master"
|
|
AutoEventWireup="true" Inherits="barcode" CodeBehind="barcode.aspx.cs" %>
|
|
|
|
<%@ Register Src="WebUserControls/mod_barcode.ascx" TagName="mod_barcode" TagPrefix="uc1" %>
|
|
<%@ Register Src="WebUserControls/mod_btnComandi.ascx" TagName="mod_btnComandi" TagPrefix="uc2" %>
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="body" runat="Server">
|
|
<uc1:mod_barcode ID="mod_barcode1" runat="server" />
|
|
<uc2:mod_btnComandi ID="mod_btnComandi1" runat="server" />
|
|
<div class="p-1 row table-secondary form-group fixed-bottom small">
|
|
<div class="col-4">
|
|
<label for="txtCacheSec">Validità cache (sec)</label>
|
|
<asp:TextBox runat="server" ID="txtCacheSec" CssClass="form-control" AutoPostBack="True" OnTextChanged="txtCacheSec_TextChanged">5</asp:TextBox>
|
|
</div>
|
|
<div class="col-4">
|
|
<label for="txtNumDD">Num gg analizzati</label>
|
|
<asp:TextBox runat="server" ID="txtNumDD" CssClass="form-control" AutoPostBack="True" OnTextChanged="txtNumDD_TextChanged">5</asp:TextBox>
|
|
</div>
|
|
<div class="col-4">
|
|
<label for="btnReload">Forza aggiornamento</label>
|
|
<asp:Button ID="btnReload" runat="server" Text="Aggiorna" OnClick="btnReload_Click" CssClass="btn text-truncate btn-block btn-dark" />
|
|
</div>
|
|
<div class="col-12 text-center align-middle">
|
|
<%: string.Format("DB ReLoadTime {0:N3}sec ", lastUpdDuration.TotalSeconds) %> |
|
|
<%: string.Format("Caricati {0} Comandi", nComandi) %> |
|
|
<%: string.Format("{0} Record BCode", nBCodeRec) %>
|
|
</div>
|
|
</div>
|
|
</asp:Content>
|