Files
NKC/NKC_WF/site/About.aspx.cs
T
2020-08-26 21:13:56 +02:00

17 lines
319 B
C#

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