Files
GPW/GPW_Smart/WebUserControls/cmp_chart.ascx.cs
T
2020-09-03 15:34:14 +02:00

20 lines
502 B
C#

using GPW_data;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace GPW_Smart.WebUserControls
{
public partial class cmp_chart : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
// imposto valori...
hfIdxDip.Value = $"{DataProxy.idxDipendente}";
hfData.Value = DateTime.Today.ToString("yyyy-MM-dd");
}
}
}