31 lines
689 B
C#
31 lines
689 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace CompanyRegistration
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
} |