using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace MP_MAG { public partial class Site : System.Web.UI.MasterPage { protected void Page_Load(object sender, EventArgs e) { } /// /// Imposta vilibilità componente search globale /// public bool showSearch { get { return cmp_menuTop.showSearch; } set { cmp_menuTop.showSearch = value; } } } }