Files
NKC/NKC_WF/Contact.aspx.cs
T
2019-07-31 14:21:53 +02:00

17 lines
330 B
C#

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