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

32 lines
662 B
C#

using System;
namespace NKC_WF.WebUserControls
{
public partial class cmp_searchItems : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
public string itemDtmx
{
get
{
return hfItemDtmx.Value;
}
set
{
if (!string.IsNullOrEmpty(value))
{
hfItemDtmx.Value = value;
frmView.DataBind();
}
else
{
frmView.Visible = false;
}
}
}
}
}