25 lines
611 B
C#
25 lines
611 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 : System.Web.UI.UserControl
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
#if false
|
|
if (!Page.IsPostBack)
|
|
{
|
|
intervalloDate periodo = datario.mngr.ultimiMesi(DateTime.Now, 12);
|
|
txtDataFrom.Text = periodo.inizio.ToShortDateString();
|
|
txtDataTo.Text = periodo.fine.ToShortDateString();
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
} |