From b224ec89b2d1b2e5581ca860f7601634068c5262 Mon Sep 17 00:00:00 2001 From: ermanno Date: Wed, 21 Jul 2010 10:35:01 +0000 Subject: [PATCH] aggiunta bozza di sito per GMW Term git-svn-id: https://keyhammer.ath.cx/svn/GMW/trunk@152 365432ac-a1b5-4ffd-bb28-6d3099d32164 --- GMW/GMW_Term/Barcode.aspx | 33 +++ GMW/GMW_Term/Barcode.aspx.cs | 38 +++ GMW/GMW_Term/Barcode.aspx.designer.cs | 97 ++++++++ GMW/GMW_Term/ChangeUser.aspx | 30 +++ GMW/GMW_Term/ChangeUser.aspx.cs | 35 +++ GMW/GMW_Term/ChangeUser.aspx.designer.cs | 97 ++++++++ GMW/GMW_Term/GMW_Compact.csproj | 157 +++++++++++++ GMW/GMW_Term/GMW_Compact.csproj.user | 31 +++ GMW/GMW_Term/GMW_Term.csproj | 64 ++++- GMW/GMW_Term/GMW_Term.csproj.user | 2 +- GMW/GMW_Term/Home.aspx | 31 +++ GMW/GMW_Term/Home.aspx.cs | 44 ++++ GMW/GMW_Term/Home.aspx.designer.cs | 79 +++++++ GMW/GMW_Term/ListePrelievo.aspx | 27 +++ GMW/GMW_Term/ListePrelievo.aspx.cs | 16 ++ GMW/GMW_Term/ListePrelievo.aspx.designer.cs | 88 +++++++ GMW/GMW_Term/Login.aspx | 23 ++ GMW/GMW_Term/Login.aspx.cs | 55 +++++ GMW/GMW_Term/Login.aspx.designer.cs | 61 +++++ GMW/GMW_Term/Search.aspx | 29 +++ GMW/GMW_Term/Search.aspx.cs | 17 ++ GMW/GMW_Term/Search.aspx.designer.cs | 88 +++++++ GMW/GMW_Term/Style.css | 33 +++ GMW/GMW_Term/Web.config | 219 ++++++++---------- GMW/GMW_Term/WebMasterPages/Compact.Master | 21 ++ GMW/GMW_Term/WebMasterPages/Compact.Master.cs | 16 ++ .../WebMasterPages/Compact.Master.designer.cs | 43 ++++ GMW/GMW_Term/bin/GMW_Term.dll | Bin 4096 -> 7168 bytes GMW/GMW_Term/images/logo_sw.png | Bin 0 -> 3420 bytes .../GMW_Term.csproj.FileListAbsolute.txt | 5 + GMW/GMW_Term/obj/Debug/GMW_Term.dll | Bin 4096 -> 7168 bytes 31 files changed, 1350 insertions(+), 129 deletions(-) create mode 100644 GMW/GMW_Term/Barcode.aspx create mode 100644 GMW/GMW_Term/Barcode.aspx.cs create mode 100644 GMW/GMW_Term/Barcode.aspx.designer.cs create mode 100644 GMW/GMW_Term/ChangeUser.aspx create mode 100644 GMW/GMW_Term/ChangeUser.aspx.cs create mode 100644 GMW/GMW_Term/ChangeUser.aspx.designer.cs create mode 100644 GMW/GMW_Term/GMW_Compact.csproj create mode 100644 GMW/GMW_Term/GMW_Compact.csproj.user create mode 100644 GMW/GMW_Term/Home.aspx create mode 100644 GMW/GMW_Term/Home.aspx.cs create mode 100644 GMW/GMW_Term/Home.aspx.designer.cs create mode 100644 GMW/GMW_Term/ListePrelievo.aspx create mode 100644 GMW/GMW_Term/ListePrelievo.aspx.cs create mode 100644 GMW/GMW_Term/ListePrelievo.aspx.designer.cs create mode 100644 GMW/GMW_Term/Login.aspx create mode 100644 GMW/GMW_Term/Login.aspx.cs create mode 100644 GMW/GMW_Term/Login.aspx.designer.cs create mode 100644 GMW/GMW_Term/Search.aspx create mode 100644 GMW/GMW_Term/Search.aspx.cs create mode 100644 GMW/GMW_Term/Search.aspx.designer.cs create mode 100644 GMW/GMW_Term/Style.css create mode 100644 GMW/GMW_Term/WebMasterPages/Compact.Master create mode 100644 GMW/GMW_Term/WebMasterPages/Compact.Master.cs create mode 100644 GMW/GMW_Term/WebMasterPages/Compact.Master.designer.cs create mode 100644 GMW/GMW_Term/images/logo_sw.png diff --git a/GMW/GMW_Term/Barcode.aspx b/GMW/GMW_Term/Barcode.aspx new file mode 100644 index 00000000..959df4db --- /dev/null +++ b/GMW/GMW_Term/Barcode.aspx @@ -0,0 +1,33 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/Compact.Master" + AutoEventWireup="true" CodeBehind="Barcode.aspx.cs" Inherits="GMW_Compact.Barcode" %> + + + + + + +
+ +
+
+
+ +
+
+
+
+ +
+ +
+ +
+ +
+ + +
+ + +
+
diff --git a/GMW/GMW_Term/Barcode.aspx.cs b/GMW/GMW_Term/Barcode.aspx.cs new file mode 100644 index 00000000..5d516ac8 --- /dev/null +++ b/GMW/GMW_Term/Barcode.aspx.cs @@ -0,0 +1,38 @@ +using System; +using System.Collections.Generic; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace GMW_Compact +{ + public partial class Barcode : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + // scrive label e text bottoni + lblTitle.Text = (string)(Session["loginName"]); + if (!Page.IsPostBack) + { + lblData.Font.Italic = true; + lblData.Text = "Your data here..."; + } + } + + protected void txtInput_TextChanged(object sender, EventArgs e) + { + lblData.Font.Italic = false; + lblData.Text = txtInput.Text; + } + + protected void btn1_Click(object sender, EventArgs e) + { + + } + + protected void btn2_Click(object sender, EventArgs e) + { + + } + } +} diff --git a/GMW/GMW_Term/Barcode.aspx.designer.cs b/GMW/GMW_Term/Barcode.aspx.designer.cs new file mode 100644 index 00000000..bb25f9ae --- /dev/null +++ b/GMW/GMW_Term/Barcode.aspx.designer.cs @@ -0,0 +1,97 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GMW_Compact { + + + public partial class Barcode { + + /// + /// ScriptManager1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.ScriptManager ScriptManager1; + + /// + /// lblGMW control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblGMW; + + /// + /// lblUser control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblUser; + + /// + /// lblTitle control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblTitle; + + /// + /// lblInput control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblInput; + + /// + /// txtInput control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtInput; + + /// + /// lblData control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblData; + + /// + /// btn1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btn1; + + /// + /// btn2 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btn2; + } +} diff --git a/GMW/GMW_Term/ChangeUser.aspx b/GMW/GMW_Term/ChangeUser.aspx new file mode 100644 index 00000000..fc994b1c --- /dev/null +++ b/GMW/GMW_Term/ChangeUser.aspx @@ -0,0 +1,30 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/Compact.Master" + AutoEventWireup="true" CodeBehind="ChangeUser.aspx.cs" Inherits="GMW_Compact.ChangeUser" %> + + + + + + +
+ +
+
+
+ +
+
+
+
+ +
+
+ +
+
+ + +
+
+
diff --git a/GMW/GMW_Term/ChangeUser.aspx.cs b/GMW/GMW_Term/ChangeUser.aspx.cs new file mode 100644 index 00000000..b2b05665 --- /dev/null +++ b/GMW/GMW_Term/ChangeUser.aspx.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace GMW_Compact +{ + public partial class ChangeUser : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + lblTitle.Text = (string)(Session["loginName"]); + } + + private string _nomeUtente = string.Empty; + + protected void txtLogin_TextChanged(object sender, EventArgs e) + { + // se stringa inizia con O metti via nome utente per login + if (txtLogin.Text.StartsWith("O")) + { + _nomeUtente = txtLogin.Text; + Session["loginName"] = txtLogin.Text; + Response.Redirect("Home.aspx"); + } + else + { + // comportamento in caso non di login + lblErrore.Font.Italic = true; + lblErrore.Text = "Errore: inserire codice username!"; + } + } + } +} diff --git a/GMW/GMW_Term/ChangeUser.aspx.designer.cs b/GMW/GMW_Term/ChangeUser.aspx.designer.cs new file mode 100644 index 00000000..7be44929 --- /dev/null +++ b/GMW/GMW_Term/ChangeUser.aspx.designer.cs @@ -0,0 +1,97 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GMW_Compact { + + + public partial class ChangeUser { + + /// + /// ScriptManager1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.ScriptManager ScriptManager1; + + /// + /// lblGMW control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblGMW; + + /// + /// lblUser control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblUser; + + /// + /// lblTitle control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblTitle; + + /// + /// lblInput control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblInput; + + /// + /// txtLogin control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtLogin; + + /// + /// lblErrore control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblErrore; + + /// + /// btn1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btn1; + + /// + /// btn2 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btn2; + } +} diff --git a/GMW/GMW_Term/GMW_Compact.csproj b/GMW/GMW_Term/GMW_Compact.csproj new file mode 100644 index 00000000..6460a5ef --- /dev/null +++ b/GMW/GMW_Term/GMW_Compact.csproj @@ -0,0 +1,157 @@ + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {E2E8FA90-2EC6-4439-BD04-61E39C65F1D2} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + GMW_Compact + GMW_Compact + + + 2.0 + + + v3.5 + + + true + full + false + bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\ + TRACE + prompt + 4 + + + + + 3.5 + + + + 3.5 + + + + + 3.5 + + + 3.5 + + + + + + + + 3.5 + + + + + + + + + Barcode.aspx + ASPXCodeBehind + + + Barcode.aspx + + + ChangeUser.aspx + ASPXCodeBehind + + + ChangeUser.aspx + + + Home.aspx + ASPXCodeBehind + + + Home.aspx + + + ListePrelievo.aspx + ASPXCodeBehind + + + ListePrelievo.aspx + + + Login.aspx + ASPXCodeBehind + + + Login.aspx + + + Search.aspx + ASPXCodeBehind + + + Search.aspx + + + Compact.Master + ASPXCodeBehind + + + Compact.Master + + + + + + + + + + + + + + + + + + + + + False + True + 49573 + / + + + False + False + + + False + + + + + \ No newline at end of file diff --git a/GMW/GMW_Term/GMW_Compact.csproj.user b/GMW/GMW_Term/GMW_Compact.csproj.user new file mode 100644 index 00000000..92c01509 --- /dev/null +++ b/GMW/GMW_Term/GMW_Compact.csproj.user @@ -0,0 +1,31 @@ + + + + + + Login.aspx + SpecificPage + True + False + False + RunFiles + + + False + True + + + + + + + + + False + True + False + + + + + \ No newline at end of file diff --git a/GMW/GMW_Term/GMW_Term.csproj b/GMW/GMW_Term/GMW_Term.csproj index 585c6384..6dcade6b 100644 --- a/GMW/GMW_Term/GMW_Term.csproj +++ b/GMW/GMW_Term/GMW_Term.csproj @@ -53,19 +53,73 @@ - - + + Barcode.aspx ASPXCodeBehind - Default.aspx - - Default.aspx + + Barcode.aspx + + + ChangeUser.aspx + ASPXCodeBehind + + + ChangeUser.aspx + + + Home.aspx + ASPXCodeBehind + + + Home.aspx + + + ListePrelievo.aspx + ASPXCodeBehind + + + ListePrelievo.aspx + + + Login.aspx + ASPXCodeBehind + + + Login.aspx + + + Search.aspx + ASPXCodeBehind + + + Search.aspx + + + Compact.Master + ASPXCodeBehind + + + Compact.Master + + + + + + + + + + + + + diff --git a/GMW/GMW_Term/GMW_Term.csproj.user b/GMW/GMW_Term/GMW_Term.csproj.user index ded0e139..473ba2cb 100644 --- a/GMW/GMW_Term/GMW_Term.csproj.user +++ b/GMW/GMW_Term/GMW_Term.csproj.user @@ -1,7 +1,7 @@  - + diff --git a/GMW/GMW_Term/Home.aspx b/GMW/GMW_Term/Home.aspx new file mode 100644 index 00000000..caed5244 --- /dev/null +++ b/GMW/GMW_Term/Home.aspx @@ -0,0 +1,31 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/Compact.Master" + AutoEventWireup="true" CodeBehind="Home.aspx.cs" Inherits="GMW_Compact.Home2" %> + + + + +
+ +
+
+ +
+
+   +
+
+   +
+
+
+
+ +
+
+ +
+
diff --git a/GMW/GMW_Term/Home.aspx.cs b/GMW/GMW_Term/Home.aspx.cs new file mode 100644 index 00000000..71d42502 --- /dev/null +++ b/GMW/GMW_Term/Home.aspx.cs @@ -0,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace GMW_Compact +{ + public partial class Home2 : System.Web.UI.Page + { + // nuovo oggetto Login + Login loginMethods = new Login(); + + protected void Page_Load(object sender, EventArgs e) + { + // scrive label e text bottoni + lblTitle.Text = (string)(Session["loginName"]); + btn1.Text = "Barcode"; + btn2.Text = "Ricerca"; + btn3.Text = "Liste Prelievo"; + btn4.Text = "Cambia Utente"; + } + + protected void btn1_Click(object sender, EventArgs e) + { + Response.Redirect("Barcode.aspx"); + } + + protected void btn2_Click1(object sender, EventArgs e) + { + Response.Redirect("Search.aspx"); + } + + protected void btn3_Click1(object sender, EventArgs e) + { + Response.Redirect("ListePrelievo.aspx"); + } + + protected void btn4_Click1(object sender, EventArgs e) + { + Response.Redirect("ChangeUser.aspx"); + } + } +} diff --git a/GMW/GMW_Term/Home.aspx.designer.cs b/GMW/GMW_Term/Home.aspx.designer.cs new file mode 100644 index 00000000..89963c4e --- /dev/null +++ b/GMW/GMW_Term/Home.aspx.designer.cs @@ -0,0 +1,79 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GMW_Compact { + + + public partial class Home2 { + + /// + /// lblGMW control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblGMW; + + /// + /// lblUser control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblUser; + + /// + /// lblTitle control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblTitle; + + /// + /// btn1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btn1; + + /// + /// btn2 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btn2; + + /// + /// btn3 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btn3; + + /// + /// btn4 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btn4; + } +} diff --git a/GMW/GMW_Term/ListePrelievo.aspx b/GMW/GMW_Term/ListePrelievo.aspx new file mode 100644 index 00000000..3a225b08 --- /dev/null +++ b/GMW/GMW_Term/ListePrelievo.aspx @@ -0,0 +1,27 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/Compact.Master" AutoEventWireup="true" CodeBehind="ListePrelievo.aspx.cs" Inherits="GMW_Compact.ListePrelievo" %> + + + + + +
+ +
+
+
+ +
+
+
+ + +
+
+
+
+
+ + +
+
+
diff --git a/GMW/GMW_Term/ListePrelievo.aspx.cs b/GMW/GMW_Term/ListePrelievo.aspx.cs new file mode 100644 index 00000000..6ed2a93a --- /dev/null +++ b/GMW/GMW_Term/ListePrelievo.aspx.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace GMW_Compact +{ + public partial class ListePrelievo : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} diff --git a/GMW/GMW_Term/ListePrelievo.aspx.designer.cs b/GMW/GMW_Term/ListePrelievo.aspx.designer.cs new file mode 100644 index 00000000..7a979aab --- /dev/null +++ b/GMW/GMW_Term/ListePrelievo.aspx.designer.cs @@ -0,0 +1,88 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GMW_Compact { + + + public partial class ListePrelievo { + + /// + /// ScriptManager1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.ScriptManager ScriptManager1; + + /// + /// lblGMW control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblGMW; + + /// + /// lblUser control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblUser; + + /// + /// lblTitle control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblTitle; + + /// + /// lblInput control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblInput; + + /// + /// updPanel1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.UpdatePanel updPanel1; + + /// + /// btn1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btn1; + + /// + /// btn2 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btn2; + } +} diff --git a/GMW/GMW_Term/Login.aspx b/GMW/GMW_Term/Login.aspx new file mode 100644 index 00000000..19823c66 --- /dev/null +++ b/GMW/GMW_Term/Login.aspx @@ -0,0 +1,23 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/Compact.Master" + AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="GMW_Compact.Login2" %> + + + + + +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
diff --git a/GMW/GMW_Term/Login.aspx.cs b/GMW/GMW_Term/Login.aspx.cs new file mode 100644 index 00000000..2d11316d --- /dev/null +++ b/GMW/GMW_Term/Login.aspx.cs @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace GMW_Compact +{ + public partial class Login2 : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + + /// + /// stringa da valorizzare per nome utente + /// + private string _nomeUtente = string.Empty; + + protected void txtLogin_TextChanged(object sender, EventArgs e) + { + // se stringa inizia con O metti via nome utente per login + if (txtLogin.Text.StartsWith("O")) + { + _nomeUtente = txtLogin.Text; + Session["loginName"] = txtLogin.Text; + Response.Redirect("Home.aspx"); + } + else + { + // comportamento in caso non di login + lblErrore.Font.Italic = true; + lblErrore.Text = "Errore: inserire codice username!"; + } + } + + + + /// + /// imposta il nome utente + /// + public string userName + { + get + { + return _nomeUtente; + } + set + { + _nomeUtente = value; + } + } + } +} diff --git a/GMW/GMW_Term/Login.aspx.designer.cs b/GMW/GMW_Term/Login.aspx.designer.cs new file mode 100644 index 00000000..78046e39 --- /dev/null +++ b/GMW/GMW_Term/Login.aspx.designer.cs @@ -0,0 +1,61 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GMW_Compact { + + + public partial class Login2 { + + /// + /// ScriptManager1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.ScriptManager ScriptManager1; + + /// + /// lblGMW control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblGMW; + + /// + /// txtLogin control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtLogin; + + /// + /// lblLogin control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblLogin; + + /// + /// lblErrore control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblErrore; + } +} diff --git a/GMW/GMW_Term/Search.aspx b/GMW/GMW_Term/Search.aspx new file mode 100644 index 00000000..16dc57ed --- /dev/null +++ b/GMW/GMW_Term/Search.aspx @@ -0,0 +1,29 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/Compact.Master" + AutoEventWireup="true" CodeBehind="Search.aspx.cs" Inherits="GMW_Compact.Search" %> + + + + + + +
+ +
+
+
+ +
+
+
+ + +
+
+
+
+
+ + +
+
+
diff --git a/GMW/GMW_Term/Search.aspx.cs b/GMW/GMW_Term/Search.aspx.cs new file mode 100644 index 00000000..d1d41b3f --- /dev/null +++ b/GMW/GMW_Term/Search.aspx.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace GMW_Compact +{ + public partial class Search : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + // scrive label e text bottoni + lblTitle.Text = (string)(Session["loginName"]); + } + } +} diff --git a/GMW/GMW_Term/Search.aspx.designer.cs b/GMW/GMW_Term/Search.aspx.designer.cs new file mode 100644 index 00000000..5df9a725 --- /dev/null +++ b/GMW/GMW_Term/Search.aspx.designer.cs @@ -0,0 +1,88 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GMW_Compact { + + + public partial class Search { + + /// + /// ScriptManager1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.ScriptManager ScriptManager1; + + /// + /// lblGMW control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblGMW; + + /// + /// lblUser control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblUser; + + /// + /// lblTitle control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblTitle; + + /// + /// lblInput control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblInput; + + /// + /// updPanel1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.UpdatePanel updPanel1; + + /// + /// btn1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btn1; + + /// + /// btn2 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btn2; + } +} diff --git a/GMW/GMW_Term/Style.css b/GMW/GMW_Term/Style.css new file mode 100644 index 00000000..64361e34 --- /dev/null +++ b/GMW/GMW_Term/Style.css @@ -0,0 +1,33 @@ +body +{ +} + +#content +{ + width: 240px; + height: 280px; + padding: 0px; + border: 1px black solid; + background-position: center bottom; + background-image: url('images/logo_sw.png'); + background-repeat: no-repeat; +} + +.quadro1, .quadro2 +{ + float: left; + width: 120px; + height: 100px; + text-align: center; + vertical-align:middle; +} + +.quadro1 +{ +} + +.quadro2 +{ +} + + diff --git a/GMW/GMW_Term/Web.config b/GMW/GMW_Term/Web.config index 39029802..e58aec58 100644 --- a/GMW/GMW_Term/Web.config +++ b/GMW/GMW_Term/Web.config @@ -1,125 +1,98 @@ - - + - - - - - -
- -
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/GMW/GMW_Term/WebMasterPages/Compact.Master b/GMW/GMW_Term/WebMasterPages/Compact.Master new file mode 100644 index 00000000..2c929d07 --- /dev/null +++ b/GMW/GMW_Term/WebMasterPages/Compact.Master @@ -0,0 +1,21 @@ +<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Compact.master.cs" Inherits="GMW_Compact.Compact" %> + + + + + + + + + + + +
+
+ + + +
+
+ + diff --git a/GMW/GMW_Term/WebMasterPages/Compact.Master.cs b/GMW/GMW_Term/WebMasterPages/Compact.Master.cs new file mode 100644 index 00000000..175dd502 --- /dev/null +++ b/GMW/GMW_Term/WebMasterPages/Compact.Master.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace GMW_Compact +{ + public partial class Compact : System.Web.UI.MasterPage + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} diff --git a/GMW/GMW_Term/WebMasterPages/Compact.Master.designer.cs b/GMW/GMW_Term/WebMasterPages/Compact.Master.designer.cs new file mode 100644 index 00000000..307fdd72 --- /dev/null +++ b/GMW/GMW_Term/WebMasterPages/Compact.Master.designer.cs @@ -0,0 +1,43 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GMW_Compact { + + + public partial class Compact { + + /// + /// head control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.ContentPlaceHolder head; + + /// + /// 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; + + /// + /// ContentPlaceHolder1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.ContentPlaceHolder ContentPlaceHolder1; + } +} diff --git a/GMW/GMW_Term/bin/GMW_Term.dll b/GMW/GMW_Term/bin/GMW_Term.dll index 1c36070a849e6f0d4330be687c44f7799d591dea..6a58f5669d37a052fad4cbd4b39ec6ae55ff3dd5 100644 GIT binary patch literal 7168 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 Z-%9`+n!hPti1e}dQuzOm^}nmYKLEdvi;VyP delta 988 zcmX|=Ur19?9LK-s?vLAa%el?cMD8|h`G;XCtu)NkVPe*5&1DR9>P^(E<~9iv+Jcbs zrPjeHBBHW~dXfZthsZ}QEN1vMO}bdOa8J3l#)Tx zksA}5p3$BYYgvKxe-p3>t-XgfG*T8ti1a+hNv~pw_(AZSpqXioN3dD2S8!VJDO+F` zyb^pboOMB`#H4oYr5(`vQb00VaFGJ9FL0)1IwPY?j~ggQNTyxlD&n+#hOo%ycP*k4 zI`SFr5hXl=8;kIuT5zA>A;F`9U4o|s`vl`eA4Y|q7MvBllBQ6HEO9^X5-aIFYV@NJ z0ipvz;%-4Nx=GgxzX9h+Hw(X8FpN2JhVX4#T%?OR{v0HDuJXjIjkhGV%xF7PHPM6WU>6%7sI>XKM!=@PW`(7r{=+D zn3j+9r|lmtO{N!@V!dUJYuAmk#41Y6I%A2ICNaItm`#IZAlQSNH1RFR@=k0Qns$y1 zb(JbdHSyQZQm6J;wl~EhNhOhtCF2t_imLFh&a*aWzG!G1ejh*KDmUiph>y9J__8as WVk_OyndMw9wgy)0H00004XF*Lt006O% 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 Z-%9`+n!hPti1e}dQuzOm^}nmYKLEdvi;VyP delta 988 zcmX|=Ur19?9LK-s?vLAa%el?cMD8|h`G;XCtu)NkVPe*5&1DR9>P^(E<~9iv+Jcbs zrPjeHBBHW~dXfZthsZ}QEN1vMO}bdOa8J3l#)Tx zksA}5p3$BYYgvKxe-p3>t-XgfG*T8ti1a+hNv~pw_(AZSpqXioN3dD2S8!VJDO+F` zyb^pboOMB`#H4oYr5(`vQb00VaFGJ9FL0)1IwPY?j~ggQNTyxlD&n+#hOo%ycP*k4 zI`SFr5hXl=8;kIuT5zA>A;F`9U4o|s`vl`eA4Y|q7MvBllBQ6HEO9^X5-aIFYV@NJ z0ipvz;%-4Nx=GgxzX9h+Hw(X8FpN2JhVX4#T%?OR{v0HDuJXjIjkhGV%xF7PHPM6WU>6%7sI>XKM!=@PW`(7r{=+D zn3j+9r|lmtO{N!@V!dUJYuAmk#41Y6I%A2ICNaItm`#IZAlQSNH1RFR@=k0Qns$y1 zb(JbdHSyQZQm6J;wl~EhNhOhtCF2t_imLFh&a*aWzG!G1ejh*KDmUiph>y9J__8as WVk_OyndMw9wgy)0