-
-
+
+
-
-
- ETS-WebScip
-
-
+
diff --git a/ETS-WS/ETS-WS/WebUserControls/mod_testata.ascx.designer.cs b/ETS-WS/ETS-WS/WebUserControls/mod_testata.ascx.designer.cs
index 5cd3fda..3223983 100644
--- a/ETS-WS/ETS-WS/WebUserControls/mod_testata.ascx.designer.cs
+++ b/ETS-WS/ETS-WS/WebUserControls/mod_testata.ascx.designer.cs
@@ -12,6 +12,15 @@ namespace ETS_WS.WebUserControls {
public partial class mod_testata {
+ ///
+ /// hlHome control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.HyperLink hlHome;
+
///
/// lblUser control.
///
@@ -29,5 +38,23 @@ namespace ETS_WS.WebUserControls {
/// To modify move field declaration from designer file to code-behind file.
///
protected global::System.Web.UI.WebControls.Label lblDataOra;
+
+ ///
+ /// ibHome control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.Image ibHome;
+
+ ///
+ /// lblTitolo control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.Label lblTitolo;
}
}
diff --git a/ETS-WS/ETS-WS/bin/ETS-WS.dll b/ETS-WS/ETS-WS/bin/ETS-WS.dll
index f5d1bd1..f0ea7cb 100644
Binary files a/ETS-WS/ETS-WS/bin/ETS-WS.dll and b/ETS-WS/ETS-WS/bin/ETS-WS.dll differ
diff --git a/ETS-WS/ETS-WS/bin/ETS_Data.dll b/ETS-WS/ETS-WS/bin/ETS_Data.dll
index 07c6e6b..90d3e41 100644
Binary files a/ETS-WS/ETS-WS/bin/ETS_Data.dll and b/ETS-WS/ETS-WS/bin/ETS_Data.dll differ
diff --git a/ETS-WS/ETS-WS/images/bg-menu-main.png b/ETS-WS/ETS-WS/images/bg-menu-main.png
index 5ff3c91..d6f96ba 100644
Binary files a/ETS-WS/ETS-WS/images/bg-menu-main.png and b/ETS-WS/ETS-WS/images/bg-menu-main.png differ
diff --git a/ETS-WS/packages/repositories.config b/ETS-WS/packages/repositories.config
index 33c9191..a1bf342 100644
--- a/ETS-WS/packages/repositories.config
+++ b/ETS-WS/packages/repositories.config
@@ -1,4 +1,5 @@
+
\ No newline at end of file
diff --git a/ETS_Data/ETS_Data.csproj b/ETS_Data/ETS_Data.csproj
index 26f010f..248ea80 100644
--- a/ETS_Data/ETS_Data.csproj
+++ b/ETS_Data/ETS_Data.csproj
@@ -47,6 +47,9 @@
true
+
+ ..\ETS-WS\packages\NLog.2.0.0.2000\lib\net40\NLog.dll
+
@@ -118,6 +121,13 @@
DS_WebScip.xsd
+
+ Always
+
+
+ Designer
+
+
SettingsSingleFileGenerator
Settings.Designer.cs
diff --git a/ETS_Data/fileMover.cs b/ETS_Data/fileMover.cs
index 1f8b055..d61c0f5 100644
--- a/ETS_Data/fileMover.cs
+++ b/ETS_Data/fileMover.cs
@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
+using NLog;
namespace ETS_Data
{
@@ -18,6 +19,8 @@ namespace ETS_Data
///
public static fileMover obj = new fileMover();
+ protected Logger lg = LogManager.GetCurrentClassLogger();
+
#endregion
///
@@ -83,5 +86,26 @@ namespace ETS_Data
}
return _di;
}
+ ///
+ /// elimina un file dato path e nomefile
+ ///
+ ///
+ ///
+ ///
+ public bool eliminaFile(string Path, string Original_Nome)
+ {
+ bool answ = false;
+ try
+ {
+ //elimino file!
+ FileInfo _fi = new FileInfo(System.Web.HttpContext.Current.Server.MapPath(Path + Original_Nome));
+ _fi.Delete();
+ lg.Info("Eliminazione file: {0}/{1}", Path, Original_Nome);
+ answ = true;
+ }
+ catch
+ { }
+ return answ;
+ }
}
}