39 lines
925 B
C#
39 lines
925 B
C#
using SteamWare;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace MoonProTablet.WebUserControls
|
|
{
|
|
public partial class mod_elencoControlli : 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
|
|
}
|
|
} |