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

26 lines
551 B
C#

using System;
namespace NKC_WF
{
public partial class SiteContent : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// Imposta vilibilità componente search globale
/// </summary>
public bool showSearch
{
get
{
return ((SiteMaster)Master).showSearch;
}
set
{
((SiteMaster)Master).showSearch = value;
}
}
}
}