Files
Samuele E. Locatelli 7ce503e68d Update gest statistiche
2020-01-03 18:40:37 +01:00

40 lines
755 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace ES3.WebUserControls
{
public partial class cmp_machStats : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// Idx macchina selezionata
/// </summary>
public string idxMacchinaSel
{
set
{
hfIdxMacchina.Value = value;
frmView.DataBind();
if (!string.IsNullOrEmpty(value))
{
//frmView.Visible = true;
}
else
{
//frmView.Visible = false;
}
}
get
{
return hfIdxMacchina.Value;
}
}
}
}