Files
NKC/NKC_WF/site/Contact.aspx.cs
T
Samuele E. Locatelli 3031566e5d More cleanup on code
2020-07-15 18:57:57 +02:00

13 lines
250 B
C#

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