Files

35 lines
818 B
C#

using SteamWare;
using System;
using System.Web.UI;
namespace MoonProTablet.WebUserControls
{
public partial class mod_elencoScarti : BaseUserControl
{
#region Protected Methods
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
intervalloDate newIntervallo = new intervalloDate()
{
fine = DateTime.Today.AddDays(1),
inizio = DateTime.Today.AddDays(-7)
};
mod_selPeriodo.intervalloAnalisi = newIntervallo;
}
}
#endregion Protected Methods
#region Public Methods
public void doUpdate()
{
grView.DataBind();
}
#endregion Public Methods
}
}