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 1c36070a..6a58f566 100644
Binary files a/GMW/GMW_Term/bin/GMW_Term.dll and b/GMW/GMW_Term/bin/GMW_Term.dll differ
diff --git a/GMW/GMW_Term/images/logo_sw.png b/GMW/GMW_Term/images/logo_sw.png
new file mode 100644
index 00000000..647ec31f
Binary files /dev/null and b/GMW/GMW_Term/images/logo_sw.png differ
diff --git a/GMW/GMW_Term/obj/Debug/GMW_Term.csproj.FileListAbsolute.txt b/GMW/GMW_Term/obj/Debug/GMW_Term.csproj.FileListAbsolute.txt
index b409fbd3..ba575936 100644
--- a/GMW/GMW_Term/obj/Debug/GMW_Term.csproj.FileListAbsolute.txt
+++ b/GMW/GMW_Term/obj/Debug/GMW_Term.csproj.FileListAbsolute.txt
@@ -3,3 +3,8 @@ C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\GMW\GMW_Term
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\GMW\GMW_Term\obj\Debug\ResolveAssemblyReference.cache
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\GMW\GMW_Term\obj\Debug\GMW_Term.dll
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\GMW\GMW_Term\obj\Debug\GMW_Term.pdb
+C:\Users\ermanno.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\GMW\GMW_Term\bin\GMW_Term.dll
+C:\Users\ermanno.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\GMW\GMW_Term\bin\GMW_Term.pdb
+C:\Users\ermanno.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\GMW\GMW_Term\obj\Debug\ResolveAssemblyReference.cache
+C:\Users\ermanno.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\GMW\GMW_Term\obj\Debug\GMW_Term.dll
+C:\Users\ermanno.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\GMW\GMW_Term\obj\Debug\GMW_Term.pdb
diff --git a/GMW/GMW_Term/obj/Debug/GMW_Term.dll b/GMW/GMW_Term/obj/Debug/GMW_Term.dll
index 1c36070a..6a58f566 100644
Binary files a/GMW/GMW_Term/obj/Debug/GMW_Term.dll and b/GMW/GMW_Term/obj/Debug/GMW_Term.dll differ