Files
Samuele E. Locatelli 0689267c12 Continuo fix grafici
2018-05-05 11:12:25 +02:00

43 lines
812 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace PUB.WebUserContols
{
public partial class mod_graphLine : System.Web.UI.UserControl
{
public string DSType
{
get
{
return "abc";// memLayer.ML.IntSessionObj("IdxPaziente");
}
}
protected DateTime DataRif
{
get
{
DateTime answ = DateTime.Now.Date;
#if false
try
{
answ = memLayer.ML.QSD("DataVisita");
}
catch
{
}
#endif
return answ;
}
}
protected void Page_Load(object sender, EventArgs e)
{
hfDSetType.Value = DSType.ToString();
hfDataRif.Value = DataRif.ToString("yyyy-MM-dd");
}
}
}