20 lines
502 B
C#
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");
|
|
}
|
|
}
|
|
} |