37 lines
832 B
C#
37 lines
832 B
C#
using GPW_data;
|
|
using SteamWare;
|
|
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_chart : BaseUserControl
|
|
{
|
|
|
|
public DateTime dtRif
|
|
{
|
|
get
|
|
{
|
|
|
|
DateTime answ = DateTime.Today;
|
|
DateTime.TryParse(hfData.Value, out answ);
|
|
return answ;
|
|
}
|
|
set
|
|
{
|
|
hfData.Value = value.ToString("yyyy-MM-dd");
|
|
ddlMaxNum.DataBind();
|
|
}
|
|
}
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
// imposto valori...
|
|
hfIdxDip.Value = $"{DataProxy.idxDipendente}";
|
|
}
|
|
}
|
|
} |