diff --git a/XPS/Query.txt b/XPS/Query.txt
deleted file mode 100644
index 56f2ea1..0000000
--- a/XPS/Query.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-INSERT INTO CLIENTI.[idxSocieta]
-SELECT Societa.idxSocieta from Societa
-WHERE Societa.descrizione = CLIENTI.[SOCIETA'];
-
-UPDATE Clienti INNER JOIN Societa ON Clienti.[SOCIETA'] = Societa.descrizione
-SET Clienti.idxSocieta = [Societa].[idxSocieta];
-
-select CLIENTI.[SOCIETA'], Societa.descrizione
-from CLIENTI inner join Societa
-ON ltrim(rtrim(CLIENTI.[SOCIETA'])) = ltrim(rtrim(Societa.descrizione));
-
-
-SELECT *
-INTO test.dbo.Clienti
-FROM OPENROWSET('MSDASQL',
- 'Driver={Microsoft Excel Driver (*.xls)};DBQ=C:\Users\Marco\Documents\clienti.xls',
- 'SELECT * FROM [sheet1$]')
diff --git a/XPS/WebMasterPages/AjaxSearch.master b/XPS/WebMasterPages/AjaxSearch.master
deleted file mode 100644
index 854c912..0000000
--- a/XPS/WebMasterPages/AjaxSearch.master
+++ /dev/null
@@ -1,68 +0,0 @@
-<%@ Master Language="C#" AutoEventWireup="true" Inherits="AjaxSearch" CodeBehind="AjaxSearch.master.cs" %>
-
-<%@ Register Src="~/WebUserControls/mod_menuTop.ascx" TagName="mod_menuTop" TagPrefix="uc1" %>
-<%@ Register Src="~/WebUserControls/mod_pageTitleAndSearch.ascx" TagName="mod_pageTitleAndSearch" TagPrefix="uc3" %>
-<%@ Register Src="~/WebUserControls/mod_ricercaGenerica.ascx" TagName="mod_ricercaGenerica" TagPrefix="uc4" %>
-<%@ Register Src="~/WebUserControls/mod_menuBottom.ascx" TagName="mod_menuBottom" TagPrefix="uc5" %>
-<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/XPS/WebMasterPages/AjaxSearch.master.cs b/XPS/WebMasterPages/AjaxSearch.master.cs
deleted file mode 100644
index cc112cc..0000000
--- a/XPS/WebMasterPages/AjaxSearch.master.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System;
-using System.Data;
-using System.Configuration;
-using System.Collections;
-using System.Web;
-using System.Web.Security;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using System.Web.UI.WebControls.WebParts;
-using System.Web.UI.HtmlControls;
-using SteamWare;
-
-public partial class AjaxSearch : System.Web.UI.MasterPage
-{
-
- protected override void OnLoad(EventArgs e)
- {
- base.OnLoad(e);
- Page.Title = SteamWare.memLayer.ML.confReadString("_titoloPagina");
-
- }
-
- protected override void OnInit(EventArgs e)
- {
- base.OnInit(e);
- }
-
- protected override void OnUnload(EventArgs e)
- {
- base.OnUnload(e);
- // svuoto tutti gli event handler inseriti...
-
- }
-}
diff --git a/XPS/WebMasterPages/AjaxSearch.master.designer.cs b/XPS/WebMasterPages/AjaxSearch.master.designer.cs
deleted file mode 100644
index 0705ace..0000000
--- a/XPS/WebMasterPages/AjaxSearch.master.designer.cs
+++ /dev/null
@@ -1,103 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-
-
-public partial class AjaxSearch {
-
- ///
- /// Head1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.HtmlControls.HtmlHead Head1;
-
- ///
- /// 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;
-
- ///
- /// sm control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.ScriptManager sm;
-
- ///
- /// UpdatePanel1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.UpdatePanel UpdatePanel1;
-
- ///
- /// Mod_menuTop1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_menuTop Mod_menuTop1;
-
- ///
- /// updPanelPagina control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.UpdatePanel updPanelPagina;
-
- ///
- /// Mod_pageTitleAndSearch1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_pageTitleAndSearch Mod_pageTitleAndSearch1;
-
- ///
- /// Mod_ricercaGenerica1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_ricercaGenerica Mod_ricercaGenerica1;
-
- ///
- /// 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;
-
- ///
- /// Mod_menuBottom1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_menuBottom Mod_menuBottom1;
-}
diff --git a/XPS/WebMasterPages/AjaxSimple.master b/XPS/WebMasterPages/AjaxSimple.master
deleted file mode 100644
index 43c80c1..0000000
--- a/XPS/WebMasterPages/AjaxSimple.master
+++ /dev/null
@@ -1,38 +0,0 @@
-<%@ Master Language="C#" AutoEventWireup="true" Inherits="AjaxSimple" CodeBehind="AjaxSimple.master.cs" %>
-
-<%@ Register Src="~/WebUserControls/mod_menuBottom.ascx" TagName="mod_menuBottom" TagPrefix="uc1" %>
-<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
-
-
-
- Simplepage
-
-
-
-
-
-
-
-
diff --git a/XPS/WebMasterPages/AjaxSimple.master.cs b/XPS/WebMasterPages/AjaxSimple.master.cs
deleted file mode 100644
index eb43aed..0000000
--- a/XPS/WebMasterPages/AjaxSimple.master.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Data;
-using System.Configuration;
-using System.Collections;
-using System.Web;
-using System.Web.Security;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using System.Web.UI.WebControls.WebParts;
-using System.Web.UI.HtmlControls;
-using SteamWare;
-
-public partial class AjaxSimple : System.Web.UI.MasterPage
-{
- protected override void OnLoad(EventArgs e)
- {
- base.OnLoad(e);
- Page.Title = SteamWare.memLayer.ML.confReadString("_titoloPagina");
- }
-}
diff --git a/XPS/WebMasterPages/AjaxSimple.master.designer.cs b/XPS/WebMasterPages/AjaxSimple.master.designer.cs
deleted file mode 100644
index 2081124..0000000
--- a/XPS/WebMasterPages/AjaxSimple.master.designer.cs
+++ /dev/null
@@ -1,49 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-
-
-public partial class AjaxSimple {
-
- ///
- /// 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;
-
- ///
- /// sm control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.ScriptManager sm;
-
- ///
- /// 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;
-
- ///
- /// Mod_menuBottom1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_menuBottom Mod_menuBottom1;
-}
diff --git a/XPS/WebMasterPages/AjaxSimpleUpload.master b/XPS/WebMasterPages/AjaxSimpleUpload.master
deleted file mode 100644
index bac2c12..0000000
--- a/XPS/WebMasterPages/AjaxSimpleUpload.master
+++ /dev/null
@@ -1,37 +0,0 @@
-<%@ Master Language="C#" AutoEventWireup="true"
- Inherits="AjaxSimpleUpload" Codebehind="AjaxSimpleUpload.master.cs" %>
-<%@ Register Src="~/WebUserControls/mod_menuBottom.ascx" TagName="mod_menuBottom" TagPrefix="uc1" %>
-<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
-
-
-
-
- SimplePage
-
-
-
-
-
-
diff --git a/XPS/WebMasterPages/AjaxSimpleUpload.master.cs b/XPS/WebMasterPages/AjaxSimpleUpload.master.cs
deleted file mode 100644
index d6f0b4e..0000000
--- a/XPS/WebMasterPages/AjaxSimpleUpload.master.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Data;
-using System.Configuration;
-using System.Collections;
-using System.Web;
-using System.Web.Security;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using System.Web.UI.WebControls.WebParts;
-using System.Web.UI.HtmlControls;
-using SteamWare;
-
-public partial class AjaxSimpleUpload : System.Web.UI.MasterPage
-{
- protected override void OnLoad(EventArgs e)
- {
- base.OnLoad(e);
- Page.Title = SteamWare.memLayer.ML.confReadString("_titoloPagina");
- }
-}
diff --git a/XPS/WebMasterPages/AjaxSimpleUpload.master.designer.cs b/XPS/WebMasterPages/AjaxSimpleUpload.master.designer.cs
deleted file mode 100644
index b09aaa0..0000000
--- a/XPS/WebMasterPages/AjaxSimpleUpload.master.designer.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-
-
-public partial class AjaxSimpleUpload {
-
- ///
- /// Head1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.HtmlControls.HtmlHead Head1;
-
- ///
- /// 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;
-
- ///
- /// sm control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.ScriptManager sm;
-
- ///
- /// 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;
-
- ///
- /// Mod_menuBottom1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_menuBottom Mod_menuBottom1;
-}
diff --git a/XPS/WebMasterPages/AjaxTitle.master b/XPS/WebMasterPages/AjaxTitle.master
deleted file mode 100644
index 96634f0..0000000
--- a/XPS/WebMasterPages/AjaxTitle.master
+++ /dev/null
@@ -1,67 +0,0 @@
-<%@ Master Language="C#" AutoEventWireup="true" Inherits="AjaxTitle" CodeBehind="AjaxTitle.master.cs" %>
-
-<%@ Register Src="~/WebUserControls/mod_menuTop.ascx" TagName="mod_menuTop" TagPrefix="uc1" %>
-<%@ Register Src="~/WebUserControls/mod_pageTitleAndSearch.ascx" TagName="mod_pageTitleAndSearch" TagPrefix="uc3" %>
-<%@ Register Src="~/WebUserControls/mod_ricercaGenerica.ascx" TagName="mod_ricercaGenerica" TagPrefix="uc4" %>
-<%@ Register Src="~/WebUserControls/mod_menuBottom.ascx" TagName="mod_menuBottom" TagPrefix="uc5" %>
-
-<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
-
-
-
-
-
-
-
-
-
-
-
diff --git a/XPS/WebMasterPages/AjaxTitle.master.cs b/XPS/WebMasterPages/AjaxTitle.master.cs
deleted file mode 100644
index 4e9c8d6..0000000
--- a/XPS/WebMasterPages/AjaxTitle.master.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System;
-using System.Data;
-using System.Configuration;
-using System.Collections;
-using System.Web;
-using System.Web.Security;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using System.Web.UI.WebControls.WebParts;
-using System.Web.UI.HtmlControls;
-using SteamWare;
-
-public partial class AjaxTitle : System.Web.UI.MasterPage
-{
- protected override void OnLoad(EventArgs e)
- {
- base.OnLoad(e);
- Page.Title = SteamWare.memLayer.ML.confReadString("_titoloPagina");
- Mod_pageTitleAndSearch1.doUpdate();
- }
-
- protected override void OnInit(EventArgs e)
- {
- base.OnInit(e);
- }
-
-
-}
diff --git a/XPS/WebMasterPages/AjaxTitle.master.designer.cs b/XPS/WebMasterPages/AjaxTitle.master.designer.cs
deleted file mode 100644
index b643bb4..0000000
--- a/XPS/WebMasterPages/AjaxTitle.master.designer.cs
+++ /dev/null
@@ -1,85 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-
-
-public partial class AjaxTitle {
-
- ///
- /// 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;
-
- ///
- /// sm control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.ScriptManager sm;
-
- ///
- /// UpdatePanel1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.UpdatePanel UpdatePanel1;
-
- ///
- /// Mod_menuTop1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_menuTop Mod_menuTop1;
-
- ///
- /// updPanelPagina control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.UpdatePanel updPanelPagina;
-
- ///
- /// Mod_pageTitleAndSearch1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_pageTitleAndSearch Mod_pageTitleAndSearch1;
-
- ///
- /// 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;
-
- ///
- /// Mod_menuBottom1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_menuBottom Mod_menuBottom1;
-}
diff --git a/XPS/WebMasterPages/Bootstrap.Master b/XPS/WebMasterPages/Bootstrap.Master
deleted file mode 100644
index ac2f457..0000000
--- a/XPS/WebMasterPages/Bootstrap.Master
+++ /dev/null
@@ -1,20 +0,0 @@
-<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Bootstrap.master.cs" Inherits="XPS.WebMasterPages.Bootstrap" %>
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/XPS/WebMasterPages/Bootstrap.Master.cs b/XPS/WebMasterPages/Bootstrap.Master.cs
deleted file mode 100644
index 088d02e..0000000
--- a/XPS/WebMasterPages/Bootstrap.Master.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Web;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-
-namespace XPS.WebMasterPages
-{
- public partial class Bootstrap : System.Web.UI.MasterPage
- {
- protected void Page_Load(object sender, EventArgs e)
- {
-
- }
- }
-}
\ No newline at end of file
diff --git a/XPS/WebMasterPages/Bootstrap.Master.designer.cs b/XPS/WebMasterPages/Bootstrap.Master.designer.cs
deleted file mode 100644
index 9b69133..0000000
--- a/XPS/WebMasterPages/Bootstrap.Master.designer.cs
+++ /dev/null
@@ -1,42 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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 XPS.WebMasterPages {
-
-
- public partial class Bootstrap {
-
- ///
- /// 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/XPS/WebMasterPages/Compact.Master b/XPS/WebMasterPages/Compact.Master
deleted file mode 100644
index 8529a32..0000000
--- a/XPS/WebMasterPages/Compact.Master
+++ /dev/null
@@ -1,27 +0,0 @@
-<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Compact.master.cs" Inherits="XPS.Compact" %>
-
-<%@ Register Src="../WebUserControls/mod_menuTopCompact.ascx" TagName="mod_menuTopCompact"
- TagPrefix="uc1" %>
-<%@ Register Src="../WebUserControls/mod_currentTask.ascx" TagName="mod_currentTask"
- TagPrefix="uc2" %>
-
-
-
- XPS Term
-
-
-
-
-
-
-
-
diff --git a/XPS/WebMasterPages/Compact.Master.cs b/XPS/WebMasterPages/Compact.Master.cs
deleted file mode 100644
index 1347e31..0000000
--- a/XPS/WebMasterPages/Compact.Master.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Web;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-
-namespace XPS
-{
- public partial class Compact : System.Web.UI.MasterPage
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- }
- }
-}
diff --git a/XPS/WebMasterPages/Compact.Master.designer.cs b/XPS/WebMasterPages/Compact.Master.designer.cs
deleted file mode 100644
index 9cb0ee9..0000000
--- a/XPS/WebMasterPages/Compact.Master.designer.cs
+++ /dev/null
@@ -1,61 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:2.0.50727.4963
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace XPS {
-
-
- 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;
-
- ///
- /// mod_menuTopCompact1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_menuTopCompact mod_menuTopCompact1;
-
- ///
- /// mod_currentTask1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_currentTask mod_currentTask1;
-
- ///
- /// body control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.WebControls.ContentPlaceHolder body;
- }
-}
diff --git a/XPS/WebMasterPages/CompactBCode.Master b/XPS/WebMasterPages/CompactBCode.Master
deleted file mode 100644
index 3c608a2..0000000
--- a/XPS/WebMasterPages/CompactBCode.Master
+++ /dev/null
@@ -1,35 +0,0 @@
-<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="CompactBCode.master.cs" Inherits="XPS.WebMasterPages.CompactBCode" %>
-
-<%@ Register src="../WebUserControls/mod_menuTopCompact.ascx" tagname="mod_menuTopCompact" tagprefix="uc1" %>
-<%@ Register Src="../WebUserControls/mod_currentTask.ascx" TagName="mod_currentTask"
- TagPrefix="uc2" %>
-
-
-
- XPS BarCode
-
-
-
-
-
-
-
-
-
-
-
diff --git a/XPS/WebMasterPages/CompactBCode.Master.cs b/XPS/WebMasterPages/CompactBCode.Master.cs
deleted file mode 100644
index 2b4257a..0000000
--- a/XPS/WebMasterPages/CompactBCode.Master.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Web;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-
-namespace XPS.WebMasterPages
-{
- public partial class CompactBCode : System.Web.UI.MasterPage
- {
- protected void Page_Load(object sender, EventArgs e)
- {
-
- }
- }
-}
diff --git a/XPS/WebMasterPages/CompactBCode.Master.designer.cs b/XPS/WebMasterPages/CompactBCode.Master.designer.cs
deleted file mode 100644
index d0ad14d..0000000
--- a/XPS/WebMasterPages/CompactBCode.Master.designer.cs
+++ /dev/null
@@ -1,70 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:2.0.50727.4963
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace XPS.WebMasterPages {
-
-
- public partial class CompactBCode {
-
- ///
- /// Head1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.HtmlControls.HtmlHead Head1;
-
- ///
- /// 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;
-
- ///
- /// mod_menuTopCompact1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_menuTopCompact mod_menuTopCompact1;
-
- ///
- /// mod_currentTask1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_currentTask mod_currentTask1;
-
- ///
- /// body control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.WebControls.ContentPlaceHolder body;
- }
-}
diff --git a/XPS/WebMasterPages/MasterAjax.master b/XPS/WebMasterPages/MasterAjax.master
deleted file mode 100644
index 04eefba..0000000
--- a/XPS/WebMasterPages/MasterAjax.master
+++ /dev/null
@@ -1,52 +0,0 @@
-<%@ Master Language="C#" AutoEventWireup="true" Inherits="MasterAjax" CodeBehind="MasterAjax.master.cs" %>
-
-<%@ Register Src="~/WebUserControls/mod_menuTop.ascx" TagName="mod_menuTop" TagPrefix="uc1" %>
-<%@ Register Src="~/WebUserControls/mod_menuBottom.ascx" TagName="mod_menuBottom" TagPrefix="uc5" %>
-<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/XPS/WebMasterPages/MasterAjax.master.cs b/XPS/WebMasterPages/MasterAjax.master.cs
deleted file mode 100644
index c2944ea..0000000
--- a/XPS/WebMasterPages/MasterAjax.master.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using System;
-using System.Data;
-using System.Configuration;
-using System.Collections;
-using System.Web;
-using System.Web.Security;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using System.Web.UI.WebControls.WebParts;
-using System.Web.UI.HtmlControls;
-using SteamWare;
-
-public partial class MasterAjax : System.Web.UI.MasterPage
-{
- protected override void OnLoad(EventArgs e)
- {
- base.OnLoad(e);
- Page.Title = SteamWare.memLayer.ML.confReadString("_titoloPagina");
-
- }
-
- protected override void OnInit(EventArgs e)
- {
- base.OnInit(e);
- }
-
- protected override void OnUnload(EventArgs e)
- {
- base.OnUnload(e);
- }
-}
diff --git a/XPS/WebMasterPages/MasterAjax.master.designer.cs b/XPS/WebMasterPages/MasterAjax.master.designer.cs
deleted file mode 100644
index dd33f24..0000000
--- a/XPS/WebMasterPages/MasterAjax.master.designer.cs
+++ /dev/null
@@ -1,85 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-
-
-public partial class MasterAjax {
-
- ///
- /// Head1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.HtmlControls.HtmlHead Head1;
-
- ///
- /// 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;
-
- ///
- /// sm control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.ScriptManager sm;
-
- ///
- /// UpdatePanel1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.UpdatePanel UpdatePanel1;
-
- ///
- /// Mod_menuTop1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_menuTop Mod_menuTop1;
-
- ///
- /// updPanelPagina control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.UpdatePanel updPanelPagina;
-
- ///
- /// 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;
-
- ///
- /// Mod_menuBottom1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::XPS.WebUserControls.mod_menuBottom Mod_menuBottom1;
-}
diff --git a/XPS/XPS.Publish.xml b/XPS/XPS.Publish.xml
deleted file mode 100644
index b08c504..0000000
--- a/XPS/XPS.Publish.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file