Files
NKC/NKC_WF/WebUserControls/cmp_ErrorsLog.ascx.cs
T
2019-12-20 16:38:03 +01:00

27 lines
443 B
C#

using System;
namespace NKC_WF.WebUserControls
{
public partial class cmp_ErrorsLog : System.Web.UI.UserControl
{
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();
}
}
}
}