Files
NKC/NKC_WF/WebUserControls/cmp_ErrorsLog.ascx.cs
2020-08-11 13:33:48 +02:00

27 lines
535 B
C#

using System;
namespace NKC_WF.WebUserControls
{
public partial class cmp_ErrorsLog : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// PArametro filtraggio errori
/// </summary>
public string Puid
{
get
{
return hfPuid.Value;
}
set
{
hfPuid.Value = value;
grView.DataBind();
}
}
}
}