26 lines
448 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
} |