38 lines
838 B
C#
38 lines
838 B
C#
using SteamWare.DS_loggingTableAdapters;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace NKC_WF.WebUserControls
|
|
{
|
|
public partial class cmp_searchItems : System.Web.UI.UserControl
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |