Files
Samuele E. Locatelli 7fb05a3a0a OK fix ODL x selezione DP
2020-11-18 17:22:18 +01:00

35 lines
733 B
C#

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