Files
GPW/GPW_Smart/SiteContent.master.cs
T
2019-09-28 08:41:12 +02:00

26 lines
448 B
C#

using System;
namespace GPW_Smart
{
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 ((Site)Master).showSearch;
}
set
{
((Site)Master).showSearch = value;
}
}
}
}