16 lines
329 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
} |