From 163e1180caed5543b289e2be50b67a1e95d20a97 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Thu, 4 Nov 2021 19:22:17 +0100 Subject: [PATCH] Inizio pagina x gestione utente --- GPW_Admin/UserLicMan.aspx | 18 ++++++++++++++ GPW_Admin/UserLicMan.aspx.cs | 35 +++++++++++++++++++++++++++ GPW_Admin/UserLicMan.aspx.designer.cs | 26 ++++++++++++++++++++ 3 files changed, 79 insertions(+) create mode 100644 GPW_Admin/UserLicMan.aspx create mode 100644 GPW_Admin/UserLicMan.aspx.cs create mode 100644 GPW_Admin/UserLicMan.aspx.designer.cs diff --git a/GPW_Admin/UserLicMan.aspx b/GPW_Admin/UserLicMan.aspx new file mode 100644 index 0000000..97e1c24 --- /dev/null +++ b/GPW_Admin/UserLicMan.aspx @@ -0,0 +1,18 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/BMP.Master" AutoEventWireup="true" CodeBehind="UserLicMan.aspx.cs" Inherits="GPW_Admin.UserLicMan" %> + +<%@ Register Src="~/WebUserControls/mod_pageSize.ascx" TagPrefix="uc1" TagName="mod_pageSize" %> + + + +
+
+ <%: traduci(titolo) %> +
+
+ gestione utenti +
+ +
+
\ No newline at end of file diff --git a/GPW_Admin/UserLicMan.aspx.cs b/GPW_Admin/UserLicMan.aspx.cs new file mode 100644 index 0000000..7d2169d --- /dev/null +++ b/GPW_Admin/UserLicMan.aspx.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace GPW_Admin +{ + public partial class UserLicMan : BasePage + { + #region Private Methods + + private void Mod_pageSize_eh_nuovaSize(object sender, EventArgs e) + { + //cmp_checkC19.pageSize = mod_pageSize.pageSize; + } + + #endregion Private Methods + + #region Protected Methods + + protected void Page_Load(object sender, EventArgs e) + { + if (!Page.IsPostBack) + { + mod_pageSize.pageSize = 20; + //cmp_checkC19.pageSize = mod_pageSize.pageSize; + } + mod_pageSize.eh_nuovaSize += Mod_pageSize_eh_nuovaSize; + } + + #endregion Protected Methods + } +} \ No newline at end of file diff --git a/GPW_Admin/UserLicMan.aspx.designer.cs b/GPW_Admin/UserLicMan.aspx.designer.cs new file mode 100644 index 0000000..671a71b --- /dev/null +++ b/GPW_Admin/UserLicMan.aspx.designer.cs @@ -0,0 +1,26 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GPW_Admin +{ + + + public partial class UserLicMan + { + + /// + /// mod_pageSize control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GPW_Admin.WebUserControls.mod_pageSize mod_pageSize; + } +}