From 2ad9dabdcd67ea0c45c70b617970c1ae3ef1d096 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Fri, 10 May 2013 10:19:58 +0200 Subject: [PATCH] fix menu bottom (con ricarico pagina...) --- ETS_Data/obj/Debug/ETS_Data.dll | Bin 444928 -> 444928 bytes PROJ-ETS/PROJ-ETS/Web.config | 229 ++++++++++-------- PROJ-ETS/PROJ-ETS/WebMasterPages/Site.Master | 11 +- .../WebMasterPages/Site.Master.designer.cs | 9 + .../mod_menuBottomFullpage.ascx | 12 +- .../mod_menuBottomFullpage.ascx.cs | 3 +- .../mod_menuBottomFullpage.ascx.designer.cs | 18 +- .../PROJ-ETS/WebUserControls/mod_testata.ascx | 2 +- .../WebUserControls/mod_testata.ascx.cs | 2 +- .../mod_testata.ascx.designer.cs | 4 +- PROJ-ETS/PROJ-ETS/bin/ETS_Data.dll | Bin 444928 -> 444928 bytes PROJ-ETS/PROJ-ETS/bin/PROJ-ETS.dll | Bin 14336 -> 14336 bytes ...J-ETS.csprojResolveAssemblyReference.cache | Bin 107910 -> 107910 bytes PROJ-ETS/PROJ-ETS/obj/Debug/PROJ-ETS.dll | Bin 14336 -> 14336 bytes 14 files changed, 156 insertions(+), 134 deletions(-) diff --git a/ETS_Data/obj/Debug/ETS_Data.dll b/ETS_Data/obj/Debug/ETS_Data.dll index 4f56478d21ba47f34b392b9c8163201ee3cde22c..001a1fb6b65b88acbcae7c6c5fd6b5cf4c05942e 100644 GIT binary patch delta 107 zcmZpeBHb`WdO`Qt}o31k2QCLoq!WMEixkBwo?0XBx9V3*(q{V8)}ey{W29 - - -
- -
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PROJ-ETS/PROJ-ETS/WebMasterPages/Site.Master b/PROJ-ETS/PROJ-ETS/WebMasterPages/Site.Master index 75beed8..4c24b41 100644 --- a/PROJ-ETS/PROJ-ETS/WebMasterPages/Site.Master +++ b/PROJ-ETS/PROJ-ETS/WebMasterPages/Site.Master @@ -3,6 +3,9 @@ <%@ Register Src="~/WebUserControls/mod_testata.ascx" TagPrefix="uc1" TagName="mod_testata" %> +<%@ Register Src="../WebUserControls/mod_menuBottomFullpage.ascx" TagName="mod_menuBottomFullpage" TagPrefix="uc2" %> + + @@ -12,7 +15,7 @@ <%: Scripts.Render("~/bundles/modernizr") %> - + @@ -57,11 +60,7 @@ <%--footer pagina--%>
-
-
-

© <%: DateTime.Now.Year %> - My ASP.NET Application

-
-
+
diff --git a/PROJ-ETS/PROJ-ETS/WebMasterPages/Site.Master.designer.cs b/PROJ-ETS/PROJ-ETS/WebMasterPages/Site.Master.designer.cs index 36b7997..a54d8a0 100644 --- a/PROJ-ETS/PROJ-ETS/WebMasterPages/Site.Master.designer.cs +++ b/PROJ-ETS/PROJ-ETS/WebMasterPages/Site.Master.designer.cs @@ -56,5 +56,14 @@ namespace PROJ_ETS { /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.ContentPlaceHolder MainContent; + + /// + /// mod_menuBottomFullpage1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::PROJ_ETS.WebUserControls.mod_menuBottomFullpage mod_menuBottomFullpage1; } } diff --git a/PROJ-ETS/PROJ-ETS/WebUserControls/mod_menuBottomFullpage.ascx b/PROJ-ETS/PROJ-ETS/WebUserControls/mod_menuBottomFullpage.ascx index c308bba..e2cedef 100644 --- a/PROJ-ETS/PROJ-ETS/WebUserControls/mod_menuBottomFullpage.ascx +++ b/PROJ-ETS/PROJ-ETS/WebUserControls/mod_menuBottomFullpage.ascx @@ -2,19 +2,15 @@ Inherits="PROJ_ETS.WebUserControls.mod_menuBottomFullpage" %> <% if (false) { %> - - - - - + <% } %> -
+
-  -   - +  -   + © 2013-<%: DateTime.Now.Year %> - SteamWare, ETS
diff --git a/PROJ-ETS/PROJ-ETS/WebUserControls/mod_menuBottomFullpage.ascx.cs b/PROJ-ETS/PROJ-ETS/WebUserControls/mod_menuBottomFullpage.ascx.cs index 3660430..f97238e 100644 --- a/PROJ-ETS/PROJ-ETS/WebUserControls/mod_menuBottomFullpage.ascx.cs +++ b/PROJ-ETS/PROJ-ETS/WebUserControls/mod_menuBottomFullpage.ascx.cs @@ -17,7 +17,6 @@ namespace PROJ_ETS.WebUserControls { // sistemo le stringhe... lblApp.Text = string.Format("{0} v.{1}.{2}", ConfigurationManager.AppSettings.Get("appName"), ConfigurationManager.AppSettings.Get("mainRev"), ConfigurationManager.AppSettings.Get("minRev")); - lblCopyRight.Text = string.Format("{0}", ConfigurationManager.AppSettings.Get("copyRight")); setTimer(); setClock(); } @@ -35,7 +34,7 @@ namespace PROJ_ETS.WebUserControls private void setClock() { - lblDateTime.Text = DateTime.Now.ToString("HH:mm:ss"); + lblDateTime.Text = DateTime.Now.ToString("dddd dd/MM/yyyy, HH:mm:ss"); } } } \ No newline at end of file diff --git a/PROJ-ETS/PROJ-ETS/WebUserControls/mod_menuBottomFullpage.ascx.designer.cs b/PROJ-ETS/PROJ-ETS/WebUserControls/mod_menuBottomFullpage.ascx.designer.cs index 7347088..cab5a34 100644 --- a/PROJ-ETS/PROJ-ETS/WebUserControls/mod_menuBottomFullpage.ascx.designer.cs +++ b/PROJ-ETS/PROJ-ETS/WebUserControls/mod_menuBottomFullpage.ascx.designer.cs @@ -12,6 +12,15 @@ namespace PROJ_ETS.WebUserControls { public partial class mod_menuBottomFullpage { + /// + /// BundleReference1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::Microsoft.AspNet.Web.Optimization.WebForms.BundleReference BundleReference1; + /// /// lblDateTime control. /// @@ -39,15 +48,6 @@ namespace PROJ_ETS.WebUserControls { /// protected global::System.Web.UI.WebControls.Label lblrev; - /// - /// lblCopyRight control. - /// - /// - /// Auto-generated field. - /// To modify move field declaration from designer file to code-behind file. - /// - protected global::System.Web.UI.WebControls.Label lblCopyRight; - /// /// Timer1 control. /// diff --git a/PROJ-ETS/PROJ-ETS/WebUserControls/mod_testata.ascx b/PROJ-ETS/PROJ-ETS/WebUserControls/mod_testata.ascx index 8077786..04a6f8a 100644 --- a/PROJ-ETS/PROJ-ETS/WebUserControls/mod_testata.ascx +++ b/PROJ-ETS/PROJ-ETS/WebUserControls/mod_testata.ascx @@ -7,7 +7,7 @@

- +