Fix pagina UserAdmin

This commit is contained in:
Samuele E. Locatelli
2018-03-16 16:36:35 +01:00
parent d588995dfa
commit 8550ae5ad1
8 changed files with 132 additions and 135 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Test.aspx.cs" Inherits="CMS_SC.Test" %>
<%@ Page Title="" Language="C#" MasterPageFile="~/Bootstrap.Master" AutoEventWireup="true" CodeBehind="Test.aspx.cs" Inherits="CMS_SC.Test" %>
<%@ Register Src="~/WebUserControls/mod_fileUpload.ascx" TagPrefix="uc1" TagName="mod_fileUpload" %>
@@ -153,7 +153,7 @@
<b class="card-title text-uppercase"><%: traduci("DevicesList") %></b>
</div>
<div class="card-body p-0 m-0 text-dark">
<asp:GridView ID="grViewDevices" runat="server" DataSourceID="odsDevices" AutoGenerateColumns="False" DataKeyNames="IdxDevice" Font-Size="0.75em" AllowPaging="true" CssClass="table table-condensed table-sm table-striped m-0">
<asp:GridView ID="grViewDevices" runat="server" DataSourceID="odsDevices" AutoGenerateColumns="False" DataKeyNames="IdxDevice" Font-Size="0.75em" AllowPaging="true" CssClass="table table-condensed table-sm table-striped m-0" PageSize="5">
<PagerStyle CssClass="active GridPager" />
<PagerSettings Mode="NumericFirstLast" />
<SelectedRowStyle CssClass="table-info" />
+25 -25
View File
@@ -1,29 +1,29 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_enrollByAuthKey.ascx.cs"
Inherits="CMS_SC.WebUserControls.mod_enrollByAuthKey" %>
Inherits="CMS_SC.WebUserControls.mod_enrollByAuthKey" %>
<div class="panel panel-info">
<div class="card-header">
<div class="card-title"><%: traduci("AuthKeyEnrollTitle") %></div>
</div>
<div class="panel-body">
<div class="row">
<div class="col-4">
<asp:TextBox runat="server" ID="txtEmailAK" Width="100%" placeholder="e-mail" />
</div>
<div class="col-4">
<asp:TextBox runat="server" ID="txtAuthKey" Width="100%" placeholder="password" TextMode="Password" />
</div>
<div class="col-4">
<asp:LinkButton runat="server" Width="100%" CssClass="btn btn-xs" ID="btnEnrollByAK" OnClick="btnEnrollByAK_Click"><%: traduci("btnEnrollByAK") %></asp:LinkButton>
</div>
<div class="col-12" style="padding-bottom: 40px;">
<asp:Label runat="server" ID="lblOutRegAuthKey" Text="..." Visible="false" ForeColor="Red" />
</div>
<div class="col-12" style="color: #696969;">
<h4><%: traduci("AuthKeyEnrollExplTitle") %></h4>
<hr />
<i><%: traduci("AuthKeyEnrollExplInstr01") %></i>
</div>
</div>
<div class="card card-info">
<div class="card-header bg-warning text-dark">
<div class="card-title text-uppercase"><h4><%: traduci("AuthKeyEnrollTitle") %></h4></div>
</div>
<div class="card-body table-warning">
<div class="row">
<div class="col-4">
<asp:TextBox runat="server" ID="txtEmailAK" Width="100%" placeholder="e-mail" />
</div>
<div class="col-4">
<asp:TextBox runat="server" ID="txtAuthKey" Width="100%" placeholder="password" TextMode="Password" />
</div>
<div class="col-4">
<asp:LinkButton runat="server" Width="100%" CssClass="btn btn-sm btn-warning text-dark" ID="btnEnrollByAK" OnClick="btnEnrollByAK_Click"><%: traduci("btnEnrollByAK") %></asp:LinkButton>
</div>
<div class="col-12" style="padding-bottom: 40px;">
<asp:Label runat="server" ID="lblOutRegAuthKey" Text="..." Visible="false" ForeColor="Red" />
</div>
<div class="col-12" style="color: #696969;">
<h4><%: traduci("AuthKeyEnrollExplTitle") %></h4>
<hr />
<i><%: traduci("AuthKeyEnrollExplInstr01") %></i>
</div>
</div>
</div>
</div>
+20 -21
View File
@@ -1,51 +1,50 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// <generato automaticamente>
// Codice generato da uno strumento.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
// il codice viene rigenerato.
// </generato automaticamente>
//------------------------------------------------------------------------------
namespace CMS_SC.WebUserControls
{
namespace CMS_SC.WebUserControls {
public partial class mod_enrollByAuthKey {
/// <summary>
/// txtEmailAK control.
/// Controllo txtEmailAK.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.TextBox txtEmailAK;
/// <summary>
/// txtAuthKey control.
/// Controllo txtAuthKey.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.TextBox txtAuthKey;
/// <summary>
/// btnEnrollByAK control.
/// Controllo btnEnrollByAK.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.LinkButton btnEnrollByAK;
/// <summary>
/// lblOutRegAuthKey control.
/// Controllo lblOutRegAuthKey.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblOutRegAuthKey;
}
+24 -24
View File
@@ -1,29 +1,29 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_enrollByEmail.ascx.cs"
Inherits="CMS_SC.WebUserControls.mod_enrollByEmail" %>
Inherits="CMS_SC.WebUserControls.mod_enrollByEmail" %>
<div class="panel panel-success">
<div class="card-header">
<div class="card-title"><%: traduci("EmailEnrollTitle") %></div>
</div>
<div class="panel-body">
<div class="row">
<div class="col-4">
<asp:TextBox runat="server" ID="txtEmailReq" placeholder="e-mail" Width="100%" />
</div>
<div class="col-4">
</div>
<div class="col-4">
<asp:LinkButton runat="server" CssClass="btn btn-xs" ID="btnReqNewKey" OnClick="btnReqNewKey_Click" Width="100%"><%: traduci("btnReqNewKey") %></asp:LinkButton>
</div>
<div class="col-12" style="padding-bottom: 40px;">
<asp:Label runat="server" ID="lblOutUnauth" Text="..." Visible="false" ForeColor="Red" />
</div>
<div class="col-12" style="color: #696969;">
<h4><%: traduci("EmailEnrollExplTitle") %></h4>
<hr />
<i><%: traduci("EmailEnrollExplInstr01") %></i>
</div>
</div>
<div class="card card-success">
<div class="card-header bg-primary text-light">
<div class="card-title text-uppercase"><h4><%: traduci("EmailEnrollTitle") %></h4></div>
</div>
<div class="card-body table-primary">
<div class="row">
<div class="col-4">
<asp:TextBox runat="server" ID="txtEmailReq" placeholder="e-mail" Width="100%" />
</div>
<div class="col-4">
</div>
<div class="col-4">
<asp:LinkButton runat="server" CssClass="btn btn-sm btn-primary text-light" ID="btnReqNewKey" OnClick="btnReqNewKey_Click" Width="100%"><%: traduci("btnReqNewKey") %></asp:LinkButton>
</div>
<div class="col-12" style="padding-bottom: 40px;">
<asp:Label runat="server" ID="lblOutUnauth" Text="..." Visible="false" ForeColor="Red" />
</div>
<div class="col-12" style="color: #696969;">
<h4><%: traduci("EmailEnrollExplTitle") %></h4>
<hr />
<i><%: traduci("EmailEnrollExplInstr01") %></i>
</div>
</div>
</div>
</div>
+17 -18
View File
@@ -1,42 +1,41 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// <generato automaticamente>
// Codice generato da uno strumento.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
// il codice viene rigenerato.
// </generato automaticamente>
//------------------------------------------------------------------------------
namespace CMS_SC.WebUserControls
{
namespace CMS_SC.WebUserControls {
public partial class mod_enrollByEmail {
/// <summary>
/// txtEmailReq control.
/// Controllo txtEmailReq.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.TextBox txtEmailReq;
/// <summary>
/// btnReqNewKey control.
/// Controllo btnReqNewKey.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.LinkButton btnReqNewKey;
/// <summary>
/// lblOutUnauth control.
/// Controllo lblOutUnauth.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblOutUnauth;
}
+24 -24
View File
@@ -1,29 +1,29 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_enrollUserBase.ascx.cs" Inherits="CMS_SC.WebUserControls.mod_enrollUserBase" %>
<div class="panel panel-warning">
<div class="card-header">
<div class="card-title"><%: traduci("AuthUserBaseCollaudi") %></div>
</div>
<div class="panel-body">
<div class="row">
<div class="col-4">
<asp:TextBox runat="server" ID="txtCognome" Width="100%" placeholder="Cognome" />
</div>
<div class="col-4">
<asp:TextBox runat="server" ID="txtNome" Width="100%" placeholder="Nome" />
</div>
<div class="col-4">
<asp:LinkButton runat="server" Width="100%" CssClass="btn btn-xs" ID="btnEnrollByAK" OnClick="btnEnrollByAK_Click"><%: traduci("btnAuthUserBase") %></asp:LinkButton>
</div>
<div class="col-12" style="padding-bottom: 40px;">
<asp:Label runat="server" ID="lblOutMsg" Text="..." Visible="false" ForeColor="Red" />
</div>
<div class="col-12" style="color: #696969;">
<h4><%: traduci("AuthUserBaseTitle") %></h4>
<hr />
<i><%: traduci("AuthUserBaseInstr01") %></i>
</div>
</div>
<div class="card card-warning">
<div class="card-header bg-success text-light">
<div class="card-title text-uppercase"><h4><%: traduci("AuthUserBaseCollaudi") %></h4></div>
</div>
<div class="card-body table-success">
<div class="row">
<div class="col-4">
<asp:TextBox runat="server" ID="txtCognome" Width="100%" placeholder="Cognome" />
</div>
<div class="col-4">
<asp:TextBox runat="server" ID="txtNome" Width="100%" placeholder="Nome" />
</div>
<div class="col-4">
<asp:LinkButton runat="server" Width="100%" CssClass="btn btn-sm btn-success text-dark" ID="btnEnrollByAK" OnClick="btnEnrollByAK_Click"><%: traduci("btnAuthUserBase") %></asp:LinkButton>
</div>
<div class="col-12" style="padding-bottom: 40px;">
<asp:Label runat="server" ID="lblOutMsg" Text="..." Visible="false" ForeColor="Red" />
</div>
<div class="col-12" style="color: #696969;">
<h4><%: traduci("AuthUserBaseTitle") %></h4>
<hr />
<i><%: traduci("AuthUserBaseInstr01") %></i>
</div>
</div>
</div>
</div>
+20 -21
View File
@@ -1,51 +1,50 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// <generato automaticamente>
// Codice generato da uno strumento.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
// il codice viene rigenerato.
// </generato automaticamente>
//------------------------------------------------------------------------------
namespace CMS_SC.WebUserControls
{
namespace CMS_SC.WebUserControls {
public partial class mod_enrollUserBase {
/// <summary>
/// txtCognome control.
/// Controllo txtCognome.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.TextBox txtCognome;
/// <summary>
/// txtNome control.
/// Controllo txtNome.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.TextBox txtNome;
/// <summary>
/// btnEnrollByAK control.
/// Controllo btnEnrollByAK.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.LinkButton btnEnrollByAK;
/// <summary>
/// lblOutMsg control.
/// Controllo lblOutMsg.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblOutMsg;
}