From 9153c32f79103fc2ec6db0dc52f33cde19ff35f4 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Thu, 7 Jan 2021 22:55:43 +0100 Subject: [PATCH] ok menu TOP sticky --- GPW_Admin/GPW_Admin.csproj | 12 ++- GPW_Admin/GPW_Admin.csproj.user | 2 +- GPW_Admin/Test.aspx | 78 +++++++++++++++++++ GPW_Admin/WebMasterPages/BMP.Master | 19 +++-- GPW_Admin/WebUserControls/cmp_footer.ascx | 6 +- GPW_Admin/WebUserControls/cmp_footer.ascx.cs | 27 ++++--- GPW_Admin/WebUserControls/cmp_menuTop.ascx | 4 +- GPW_Admin/WebUserControls/mod_adminFasi.ascx | 6 +- .../WebUserControls/mod_adminFasi.ascx.cs | 11 +++ .../mod_adminFasi.ascx.designer.cs | 18 +++++ GPW_Admin/fasi.aspx | 4 +- GPW_Admin/packages.config | 4 +- GPW_Admin/spostaFasi.aspx | 34 +++++--- 13 files changed, 182 insertions(+), 43 deletions(-) diff --git a/GPW_Admin/GPW_Admin.csproj b/GPW_Admin/GPW_Admin.csproj index a8cb10f..660c736 100644 --- a/GPW_Admin/GPW_Admin.csproj +++ b/GPW_Admin/GPW_Admin.csproj @@ -59,8 +59,8 @@ ..\packages\Antlr.3.5.0.2\lib\Antlr3.Runtime.dll True - - ..\packages\AspNet.ScriptManager.bootstrap.4.5.2\lib\net45\AspNet.ScriptManager.bootstrap.dll + + ..\packages\AspNet.ScriptManager.bootstrap.4.5.3\lib\net45\AspNet.ScriptManager.bootstrap.dll ..\packages\AspNet.ScriptManager.jQuery.3.5.1\lib\net45\AspNet.ScriptManager.jQuery.dll @@ -519,6 +519,7 @@ + @@ -805,6 +806,13 @@ spostaOre.aspx + + Test.aspx + ASPXCodeBehind + + + Test.aspx + timbratureMensili.aspx ASPXCodeBehind diff --git a/GPW_Admin/GPW_Admin.csproj.user b/GPW_Admin/GPW_Admin.csproj.user index 44a4d1c..0651eec 100644 --- a/GPW_Admin/GPW_Admin.csproj.user +++ b/GPW_Admin/GPW_Admin.csproj.user @@ -7,10 +7,10 @@ false ShowAllFiles IIS02 + Release|Any CPU - Debug|Any CPU diff --git a/GPW_Admin/Test.aspx b/GPW_Admin/Test.aspx index 343aa56..c931225 100644 --- a/GPW_Admin/Test.aspx +++ b/GPW_Admin/Test.aspx @@ -119,5 +119,83 @@

col-2

+
+
+

col-6

+
+
+

col-6

+
+
+
+
+

col-4

+
+
+

col-4

+
+
+

col-4

+
+
+
+
+

col-2

+
+
+

col-2

+
+
+

col-2

+
+
+

col-2

+
+
+

col-2

+
+
+

col-2

+
+
+
+
+

col-6

+
+
+

col-6

+
+
+
+
+

col-4

+
+
+

col-4

+
+
+

col-4

+
+
+
+
+

col-2

+
+
+

col-2

+
+
+

col-2

+
+
+

col-2

+
+
+

col-2

+
+
+

col-2

+
+
diff --git a/GPW_Admin/WebMasterPages/BMP.Master b/GPW_Admin/WebMasterPages/BMP.Master index f841bb7..078788b 100644 --- a/GPW_Admin/WebMasterPages/BMP.Master +++ b/GPW_Admin/WebMasterPages/BMP.Master @@ -8,13 +8,13 @@ - + <%-- - - + + --%> GPW <%: Page.Title %> @@ -63,13 +63,16 @@ - +
+
+
+
<%: traduci(titolo) %>
-
+
@@ -82,7 +85,11 @@
+
+
+
+
- \ No newline at end of file + diff --git a/GPW_Admin/WebUserControls/cmp_footer.ascx b/GPW_Admin/WebUserControls/cmp_footer.ascx index 7557ab3..4aded73 100644 --- a/GPW_Admin/WebUserControls/cmp_footer.ascx +++ b/GPW_Admin/WebUserControls/cmp_footer.ascx @@ -15,8 +15,8 @@
- -
- \ No newline at end of file + + + diff --git a/GPW_Admin/WebUserControls/cmp_footer.ascx.cs b/GPW_Admin/WebUserControls/cmp_footer.ascx.cs index 54a578c..2fb0eec 100644 --- a/GPW_Admin/WebUserControls/cmp_footer.ascx.cs +++ b/GPW_Admin/WebUserControls/cmp_footer.ascx.cs @@ -11,12 +11,6 @@ namespace GPW_Admin.WebUserControls { public partial class cmp_footer : BaseUserControl { - #region Public Events - - public event EventHandler eh_doRefresh; - - #endregion Public Events - #region Private Methods private void setClock() @@ -39,20 +33,29 @@ namespace GPW_Admin.WebUserControls protected void Page_Load(object sender, EventArgs e) { - // sistemo le stringhe... - lblApp.Text = string.Format("{0} v.{1}", ConfigurationManager.AppSettings.Get("appName"), System.Reflection.Assembly.GetExecutingAssembly().GetName().Version); + setLabel(); setTimer(); setClock(); } + private void setLabel() + { + string appInfo = ""; + try + { + // sistemo le stringhe... + appInfo = $"{ConfigurationManager.AppSettings.Get("appName")} v.{System.Reflection.Assembly.GetExecutingAssembly().GetName().Version}"; + } + catch + { } + lblApp.Text = appInfo; + } + protected void Timer1_Tick(object sender, EventArgs e) { setClock(); // se qualcuno ascolta sollevo evento nuovo valore... - if (eh_doRefresh != null) - { - eh_doRefresh(this, new EventArgs()); - } + raiseEvent(); } #endregion Protected Methods diff --git a/GPW_Admin/WebUserControls/cmp_menuTop.ascx b/GPW_Admin/WebUserControls/cmp_menuTop.ascx index 9c2201d..319f23f 100644 --- a/GPW_Admin/WebUserControls/cmp_menuTop.ascx +++ b/GPW_Admin/WebUserControls/cmp_menuTop.ascx @@ -1,7 +1,7 @@ <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_menuTop.ascx.cs" Inherits="GPW_Admin.WebUserControls.cmp_menuTop" %> - diff --git a/GPW_Admin/WebUserControls/mod_adminFasi.ascx b/GPW_Admin/WebUserControls/mod_adminFasi.ascx index b271f4f..536ec3e 100644 --- a/GPW_Admin/WebUserControls/mod_adminFasi.ascx +++ b/GPW_Admin/WebUserControls/mod_adminFasi.ascx @@ -6,10 +6,10 @@ <% } %>
-
- Progetti +
+ Progetti
-
+
+ /// Controllo divReturn. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.HtmlControls.HtmlGenericControl divReturn; + + /// + /// Controllo hlReturnProj. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.HyperLink hlReturnProj; + /// /// Controllo filtroCli. /// diff --git a/GPW_Admin/fasi.aspx b/GPW_Admin/fasi.aspx index f3a588b..b321668 100644 --- a/GPW_Admin/fasi.aspx +++ b/GPW_Admin/fasi.aspx @@ -2,5 +2,5 @@ <%@ Register Src="~/WebUserControls/mod_adminFasi.ascx" TagName="mod_adminFasi" TagPrefix="uc1" %> - - \ No newline at end of file + + diff --git a/GPW_Admin/packages.config b/GPW_Admin/packages.config index 9f606a2..2b65bfc 100644 --- a/GPW_Admin/packages.config +++ b/GPW_Admin/packages.config @@ -3,9 +3,9 @@ - + - + diff --git a/GPW_Admin/spostaFasi.aspx b/GPW_Admin/spostaFasi.aspx index 4753c9e..b11eeb1 100644 --- a/GPW_Admin/spostaFasi.aspx +++ b/GPW_Admin/spostaFasi.aspx @@ -1,26 +1,40 @@ -<%@ Page Title="GPW-ADM"Language="C#" MasterPageFile="~/WebMasterPages/AjaxTitle.master" AutoEventWireup="true" CodeBehind="spostaFasi.aspx.cs" +<%@ Page Title="GPW-ADM"Language="C#" MasterPageFile="~/WebMasterPages/BMP.master" AutoEventWireup="true" CodeBehind="spostaFasi.aspx.cs" Inherits="GPW_Admin.spostaFasi" %> <%@ Register Src="~/WebUserControls/mod_adminFasi.ascx" TagName="mod_adminFasi" TagPrefix="uc1" %> -
-
-
+ +
+
+
+
+
+
+ +
+
+

+ Origine

+ +
+
+

+ Destinazione

+ +
+
+
+
+
-

- Origine

-
-

- Destinazione

-