From 7f673d0691e136d6795111dc141d4f891d7b8d88 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Wed, 9 Nov 2016 15:52:09 +0100 Subject: [PATCH] Aggiunto area A3 --- GPW/A3/Admin.aspx | 23 +++++++++++++++++++ GPW/A3/Admin.aspx.cs | 17 ++++++++++++++ GPW/A3/Admin.aspx.designer.cs | 33 ++++++++++++++++++++++++++++ GPW/A3/Default.aspx | 19 ++++++++++++++++ GPW/A3/Default.aspx.cs | 17 ++++++++++++++ GPW/A3/Default.aspx.designer.cs | 26 ++++++++++++++++++++++ GPW/A3/Progetti.aspx | 10 +++++++++ GPW/A3/Progetti.aspx.cs | 21 ++++++++++++++++++ GPW/A3/Progetti.aspx.designer.cs | 24 ++++++++++++++++++++ GPW/A3/Timbrature.aspx | 9 ++++++++ GPW/A3/Timbrature.aspx.cs | 21 ++++++++++++++++++ GPW/A3/Timbrature.aspx.designer.cs | 24 ++++++++++++++++++++ GPW/A3/attivitaIns.aspx | 7 ++++++ GPW/A3/attivitaIns.aspx.cs | 17 ++++++++++++++ GPW/A3/attivitaIns.aspx.designer.cs | 24 ++++++++++++++++++++ GPW/A3/mancataTimbr.aspx | 9 ++++++++ GPW/A3/mancataTimbr.aspx.cs | 17 ++++++++++++++ GPW/A3/mancataTimbr.aspx.designer.cs | 24 ++++++++++++++++++++ GPW/A3/regNewDevice.aspx | 8 +++++++ GPW/A3/regNewDevice.aspx.cs | 17 ++++++++++++++ GPW/A3/regNewDevice.aspx.designer.cs | 24 ++++++++++++++++++++ 21 files changed, 391 insertions(+) create mode 100644 GPW/A3/Admin.aspx create mode 100644 GPW/A3/Admin.aspx.cs create mode 100644 GPW/A3/Admin.aspx.designer.cs create mode 100644 GPW/A3/Default.aspx create mode 100644 GPW/A3/Default.aspx.cs create mode 100644 GPW/A3/Default.aspx.designer.cs create mode 100644 GPW/A3/Progetti.aspx create mode 100644 GPW/A3/Progetti.aspx.cs create mode 100644 GPW/A3/Progetti.aspx.designer.cs create mode 100644 GPW/A3/Timbrature.aspx create mode 100644 GPW/A3/Timbrature.aspx.cs create mode 100644 GPW/A3/Timbrature.aspx.designer.cs create mode 100644 GPW/A3/attivitaIns.aspx create mode 100644 GPW/A3/attivitaIns.aspx.cs create mode 100644 GPW/A3/attivitaIns.aspx.designer.cs create mode 100644 GPW/A3/mancataTimbr.aspx create mode 100644 GPW/A3/mancataTimbr.aspx.cs create mode 100644 GPW/A3/mancataTimbr.aspx.designer.cs create mode 100644 GPW/A3/regNewDevice.aspx create mode 100644 GPW/A3/regNewDevice.aspx.cs create mode 100644 GPW/A3/regNewDevice.aspx.designer.cs diff --git a/GPW/A3/Admin.aspx b/GPW/A3/Admin.aspx new file mode 100644 index 0000000..f1ab94f --- /dev/null +++ b/GPW/A3/Admin.aspx @@ -0,0 +1,23 @@ +<%@ Page Title="" Language="C#" MasterPageFile="../WebMasterPages/jQueryMobile.Master" AutoEventWireup="true" CodeBehind="Admin.aspx.cs" Inherits="GPW.A3.Admin" %> + +<%@ Register Src="../WebUserControls/mod_resetUserAuthKey.ascx" TagName="mod_resetUserAuthKey" TagPrefix="uc1" %> +<%@ Register Src="../WebUserControls/mod_sendAuthToEmail.ascx" TagName="mod_sendAuthToEmail" TagPrefix="uc2" %> + + Admin Page + + +
+
+

+ Reset User AuthKey

+ +
+
+
+
+

+ Email AuthSecret

+ +
+
+
diff --git a/GPW/A3/Admin.aspx.cs b/GPW/A3/Admin.aspx.cs new file mode 100644 index 0000000..d565676 --- /dev/null +++ b/GPW/A3/Admin.aspx.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace GPW.A3 +{ + public partial class Admin : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/GPW/A3/Admin.aspx.designer.cs b/GPW/A3/Admin.aspx.designer.cs new file mode 100644 index 0000000..d041e98 --- /dev/null +++ b/GPW/A3/Admin.aspx.designer.cs @@ -0,0 +1,33 @@ +//------------------------------------------------------------------------------ +// +// 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.A3 { + + + public partial class Admin { + + /// + /// mod_resetUserAuthKey1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GPW.WebUserControls.mod_resetUserAuthKey mod_resetUserAuthKey1; + + /// + /// mod_sendAuthToEmail1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GPW.WebUserControls.mod_sendAuthToEmail mod_sendAuthToEmail1; + } +} diff --git a/GPW/A3/Default.aspx b/GPW/A3/Default.aspx new file mode 100644 index 0000000..03b147e --- /dev/null +++ b/GPW/A3/Default.aspx @@ -0,0 +1,19 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="GPW.A3.Default" %> + + + + + + + + +
+
+

+ Smart device

+

+ Default page

+
+
+ + diff --git a/GPW/A3/Default.aspx.cs b/GPW/A3/Default.aspx.cs new file mode 100644 index 0000000..a6a7b29 --- /dev/null +++ b/GPW/A3/Default.aspx.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace GPW.A3 +{ + public partial class Default : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + Response.Redirect("Timbrature.aspx"); + } + } +} \ No newline at end of file diff --git a/GPW/A3/Default.aspx.designer.cs b/GPW/A3/Default.aspx.designer.cs new file mode 100644 index 0000000..9da3c05 --- /dev/null +++ b/GPW/A3/Default.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.A3 +{ + + + public partial class Default + { + + /// + /// form1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + } +} diff --git a/GPW/A3/Progetti.aspx b/GPW/A3/Progetti.aspx new file mode 100644 index 0000000..033a030 --- /dev/null +++ b/GPW/A3/Progetti.aspx @@ -0,0 +1,10 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/jQueryMobile.Master" AutoEventWireup="true" CodeBehind="Progetti.aspx.cs" + Inherits="GPW.A3.Progetti" %> + +<%@ Register Src="../WebUserControls/mod_commAttivita.ascx" TagName="mod_commAttivita" TagPrefix="uc1" %> + + Progetti + + + + diff --git a/GPW/A3/Progetti.aspx.cs b/GPW/A3/Progetti.aspx.cs new file mode 100644 index 0000000..4080d7f --- /dev/null +++ b/GPW/A3/Progetti.aspx.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using SteamWare; + +namespace GPW.A3 +{ + public partial class Progetti : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + //if (!Page.IsPostBack) + //{ + // mod_commAttivita1.dataRif = DateTime.Now; + //} + } + } +} \ No newline at end of file diff --git a/GPW/A3/Progetti.aspx.designer.cs b/GPW/A3/Progetti.aspx.designer.cs new file mode 100644 index 0000000..a23e1c9 --- /dev/null +++ b/GPW/A3/Progetti.aspx.designer.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// 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.A3 { + + + public partial class Progetti { + + /// + /// mod_commAttivita1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GPW.WebUserControls.mod_commAttivita mod_commAttivita1; + } +} diff --git a/GPW/A3/Timbrature.aspx b/GPW/A3/Timbrature.aspx new file mode 100644 index 0000000..188974e --- /dev/null +++ b/GPW/A3/Timbrature.aspx @@ -0,0 +1,9 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/jQueryMobile.Master" Culture="it-IT" AutoEventWireup="true" CodeBehind="Timbrature.aspx.cs" Inherits="GPW.A3.Timbrature" %> + +<%@ Register Src="~/WebUserControls/mod_timbrature.ascx" TagName="mod_timbrature" TagPrefix="uc1" %> + + Timbrature + + + + diff --git a/GPW/A3/Timbrature.aspx.cs b/GPW/A3/Timbrature.aspx.cs new file mode 100644 index 0000000..8c838c9 --- /dev/null +++ b/GPW/A3/Timbrature.aspx.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using GPW_data; + +namespace GPW.A3 +{ + public partial class Timbrature : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + if (!Page.IsPostBack) + { + utils.mng.dailyDuties(); + } + } + } +} \ No newline at end of file diff --git a/GPW/A3/Timbrature.aspx.designer.cs b/GPW/A3/Timbrature.aspx.designer.cs new file mode 100644 index 0000000..b467a9d --- /dev/null +++ b/GPW/A3/Timbrature.aspx.designer.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// 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.A3 { + + + public partial class Timbrature { + + /// + /// mod_timbrature1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GPW.WebUserControls.mod_timbrature mod_timbrature1; + } +} diff --git a/GPW/A3/attivitaIns.aspx b/GPW/A3/attivitaIns.aspx new file mode 100644 index 0000000..a5a8b10 --- /dev/null +++ b/GPW/A3/attivitaIns.aspx @@ -0,0 +1,7 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/jQueryMobile.Master" AutoEventWireup="true" CodeBehind="attivitaIns.aspx.cs" Inherits="GPW.A3.attivitaIns" %> +<%@ Register src="../WebUserControls/mod_attivitaIns.ascx" tagname="mod_attivitaIns" tagprefix="uc1" %> + + + + + diff --git a/GPW/A3/attivitaIns.aspx.cs b/GPW/A3/attivitaIns.aspx.cs new file mode 100644 index 0000000..7b7ab9e --- /dev/null +++ b/GPW/A3/attivitaIns.aspx.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace GPW.A3 +{ + public partial class attivitaIns : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/GPW/A3/attivitaIns.aspx.designer.cs b/GPW/A3/attivitaIns.aspx.designer.cs new file mode 100644 index 0000000..0d0bf44 --- /dev/null +++ b/GPW/A3/attivitaIns.aspx.designer.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// 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.A3 { + + + public partial class attivitaIns { + + /// + /// mod_attivitaIns1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GPW.WebUserControls.mod_attivitaIns mod_attivitaIns1; + } +} diff --git a/GPW/A3/mancataTimbr.aspx b/GPW/A3/mancataTimbr.aspx new file mode 100644 index 0000000..ca00b03 --- /dev/null +++ b/GPW/A3/mancataTimbr.aspx @@ -0,0 +1,9 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/jQueryMobile.Master" Culture="it-IT" AutoEventWireup="true" CodeBehind="mancataTimbr.aspx.cs" Inherits="GPW.A3.mancataTimbr" EnableEventValidation="false" %> + +<%@ Register Src="../WebUserControls/mod_mancTimb.ascx" TagName="mod_mancTimb" TagPrefix="uc1" %> + + Mancate Timbrature + + + + diff --git a/GPW/A3/mancataTimbr.aspx.cs b/GPW/A3/mancataTimbr.aspx.cs new file mode 100644 index 0000000..2d72008 --- /dev/null +++ b/GPW/A3/mancataTimbr.aspx.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace GPW.A3 +{ + public partial class mancataTimbr : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/GPW/A3/mancataTimbr.aspx.designer.cs b/GPW/A3/mancataTimbr.aspx.designer.cs new file mode 100644 index 0000000..82ca710 --- /dev/null +++ b/GPW/A3/mancataTimbr.aspx.designer.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// 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.A3 { + + + public partial class mancataTimbr { + + /// + /// mod_mancTimb1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GPW.WebUserControls.mod_mancTimb mod_mancTimb1; + } +} diff --git a/GPW/A3/regNewDevice.aspx b/GPW/A3/regNewDevice.aspx new file mode 100644 index 0000000..6140c20 --- /dev/null +++ b/GPW/A3/regNewDevice.aspx @@ -0,0 +1,8 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/jQueryMobileNoCookie.Master" AutoEventWireup="true" CodeBehind="regNewDevice.aspx.cs" Inherits="GPW.A3.regNewDevice" %> + +<%@ Register Src="../WebUserControls/mod_regNewDevice.ascx" TagName="mod_regNewDevice" TagPrefix="uc1" %> + + + + + diff --git a/GPW/A3/regNewDevice.aspx.cs b/GPW/A3/regNewDevice.aspx.cs new file mode 100644 index 0000000..0bb3f43 --- /dev/null +++ b/GPW/A3/regNewDevice.aspx.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace GPW.A3 +{ + public partial class regNewDevice : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/GPW/A3/regNewDevice.aspx.designer.cs b/GPW/A3/regNewDevice.aspx.designer.cs new file mode 100644 index 0000000..9a62052 --- /dev/null +++ b/GPW/A3/regNewDevice.aspx.designer.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// 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.A3 { + + + public partial class regNewDevice { + + /// + /// mod_regNewDevice1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GPW.WebUserControls.mod_regNewDevice mod_regNewDevice1; + } +}