13 lines
250 B
C#
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;
|
|
}
|
|
}
|
|
} |