Files
NKC/NKC_WF/site/LabelsPrint.aspx.cs
2020-08-19 15:45:00 +02:00

16 lines
329 B
C#

using System;
using System.Web.UI;
namespace NKC_WF.site
{
public partial class LabelsPrint : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
((SiteMaster)this.Master).showSearch = false;
}
}
}
}