53 lines
1.1 KiB
C#
53 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace GPW_Commesse.WebUserControls
|
|
{
|
|
public partial class cmp_dailyCheck : BaseUserControl
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
protected void lbtCancel_Click(object sender, EventArgs e)
|
|
{
|
|
// evento chiusura
|
|
raiseCancel();
|
|
}
|
|
|
|
public DateTime dataFrom
|
|
{
|
|
get
|
|
{
|
|
|
|
DateTime answ = DateTime.Today;
|
|
DateTime.TryParse(hfDataFrom.Value, out answ);
|
|
return answ;
|
|
}
|
|
set
|
|
{
|
|
hfDataFrom.Value = value.ToString();
|
|
}
|
|
}
|
|
|
|
public DateTime dataTo
|
|
{
|
|
get
|
|
{
|
|
|
|
DateTime answ = DateTime.Today;
|
|
DateTime.TryParse(hfDataTo.Value, out answ);
|
|
return answ;
|
|
}
|
|
set
|
|
{
|
|
hfDataTo.Value = value.ToString();
|
|
}
|
|
}
|
|
}
|
|
} |