Inizio recupero files
post crash di GIT...
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -3799,7 +3799,7 @@
|
||||
modalità operativa controllo
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.UserControl.escaleInputParam(System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs)">
|
||||
<member name="M:SteamWare.UserControl.escapeInputParam(System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs)">
|
||||
<summary>
|
||||
escape dei parametri input dell'ODS
|
||||
</summary>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -3799,7 +3799,7 @@
|
||||
modalità operativa controllo
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.UserControl.escaleInputParam(System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs)">
|
||||
<member name="M:SteamWare.UserControl.escapeInputParam(System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs)">
|
||||
<summary>
|
||||
escape dei parametri input dell'ODS
|
||||
</summary>
|
||||
|
||||
@@ -26,6 +26,7 @@ namespace GMW
|
||||
// update vari...
|
||||
doUpdate();
|
||||
mod_storicoAzioniOperatore1.eh_stampa += new EventHandler(mod_storicoAzioniOperatore1_eh_stampa);
|
||||
mod_PostFinMultOUT.doUpdate();
|
||||
mod_PostFinMultOUT.eh_reqUpdate += mod_PostRX_NT1_eh_reqUpdate;
|
||||
mod_selLineaNtDt1.eh_lineSelected += mod_selLineaNtDt1_eh_doRefresh;
|
||||
mod_selLineaNtDt1.eh_showHideStorico += mod_selLineaNtDt1_eh_showHideStorico;
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -3799,7 +3799,7 @@
|
||||
modalità operativa controllo
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.UserControl.escaleInputParam(System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs)">
|
||||
<member name="M:SteamWare.UserControl.escapeInputParam(System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs)">
|
||||
<summary>
|
||||
escape dei parametri input dell'ODS
|
||||
</summary>
|
||||
|
||||
Binary file not shown.
@@ -192,7 +192,14 @@ namespace GMW_data
|
||||
{
|
||||
get
|
||||
{
|
||||
return currCodCella.Substring(0, 3);
|
||||
string answ = "";
|
||||
try
|
||||
{
|
||||
answ = currCodCella.Substring(0, 3);
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
return answ;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
|
||||
@@ -0,0 +1,49 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SteamWare;
|
||||
using System.Web.UI.WebControls;
|
||||
|
||||
namespace GMW_data
|
||||
{
|
||||
public class UserControl : SteamWare.UserControl
|
||||
{
|
||||
/// <summary>
|
||||
/// wrapper per log con salvataggio dell'IP del chiamante
|
||||
/// </summary>
|
||||
/// <param name="_testoPre"></param>
|
||||
/// <returns></returns>
|
||||
public bool httpLog(string _testoPre)
|
||||
{
|
||||
bool answ = false;
|
||||
string postazione_IP = "";
|
||||
try
|
||||
{
|
||||
postazione_IP = string.Format(" | {0} | ", Request.UserHostName);
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
logger.lg.scriviLog(postazione_IP + _testoPre);
|
||||
return answ;
|
||||
}
|
||||
/// <summary>
|
||||
/// wrapper per log con salvataggio dell'IP del chiamante
|
||||
/// </summary>
|
||||
/// <param name="_testoPre"></param>
|
||||
/// <returns></returns>
|
||||
public bool httpLog(string testoLog, tipoLog tipo)
|
||||
{
|
||||
bool answ = false;
|
||||
string postazione_IP = "";
|
||||
try
|
||||
{
|
||||
postazione_IP = string.Format(" | {0} | ", Request.UserHostName);
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
logger.lg.scriviLog(postazione_IP + testoLog, tipo);
|
||||
return answ;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -3799,7 +3799,7 @@
|
||||
modalità operativa controllo
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.UserControl.escaleInputParam(System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs)">
|
||||
<member name="M:SteamWare.UserControl.escapeInputParam(System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs)">
|
||||
<summary>
|
||||
escape dei parametri input dell'ODS
|
||||
</summary>
|
||||
|
||||
+2
-2
@@ -5,7 +5,7 @@
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("3.4.867.2379")]
|
||||
[assembly: AssemblyFileVersion("3.4.867.2379")]
|
||||
[assembly: AssemblyVersion("3.4.869.2383")]
|
||||
[assembly: AssemblyFileVersion("3.4.869.2383")]
|
||||
[assembly: AssemblyCopyright("Steamware © 2007-2016")]
|
||||
[assembly: AssemblyCompany("Steamware")]
|
||||
|
||||
Reference in New Issue
Block a user