Files
NKC/NKC_WF/site/DevUtils.aspx.cs
T
Samuele E. Locatelli 78b210e640 Ultimi fix
2020-02-08 16:38:18 +01:00

20 lines
391 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 DevUtils : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
((SiteMaster)this.Master).showSearch = false;
}
}
}
}