using System; namespace MoonProTablet.WebUserControls { public partial class cmp_dettPODL : BaseUserControl { protected void Page_Load(object sender, EventArgs e) { } /// /// codice odl selezionato /// public int idxODLSel { get { int answ = 0; try { answ = Convert.ToInt32(hfIdxODL.Value); } catch { } return answ; } set { hfIdxODL.Value = value.ToString(); frmView.DataBind(); } } } }