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

16 lines
322 B
C#

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