Files
WebSCR/WebSCR/WebUserControls/mod_ImpegnoSmall.ascx.cs
T
2015-05-12 17:19:45 +02:00

33 lines
771 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebSCR.WebUserControls
{
public partial class mod_ImpegnoSmall : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// verifica se valore passato è NON NULLO
/// </summary>
/// <param name="dataInizio"></param>
/// <returns></returns>
public bool notNull(object dataInizio)
{
bool answ = false;
try
{
answ = dataInizio.ToString() != "";
}
catch
{ }
return answ;
}
}
}