Files
2017-03-13 17:31:01 +01:00

31 lines
624 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace GMW_Term.WebUserControls
{
public partial class mod_detail_NC : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// UDC impostato
/// </summary>
public string UDC_sel
{
get
{
return hfUdc.Value;
}
set
{
hfUdc.Value = value;
}
}
}
}