Files
2021-01-04 17:56:27 +01:00

55 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MP_ADM.WebUserControls
{
public partial class cmp_ST_detail : BaseUserControl
{
#region Public Properties
public string CodGruppo
{
get
{
return hfCodGruppo.Value.Trim();
}
set
{
hfCodGruppo.Value = value.Trim();
}
}
public int IdxST
{
get
{
int answ = 0;
int.TryParse(hfIdxST.Value, out answ);
return answ;
}
set
{
hfIdxST.Value = $"{value}";
}
}
#endregion Public Properties
#region Private Methods
#endregion Private Methods
#region Protected Methods
protected void Page_Load(object sender, EventArgs e)
{
}
#endregion Protected Methods
}
}