41 lines
991 B
C#
41 lines
991 B
C#
using SteamWare;
|
|
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 SiteMaster : MasterPage
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if(!Page.IsPostBack)
|
|
{
|
|
showSearch = memLayer.ML.CRB("showSearch");
|
|
}
|
|
tpl_footer.eh_doRefresh += Cmp_footer_eh_doRefresh;
|
|
}
|
|
|
|
private void Cmp_footer_eh_doRefresh(object sender, EventArgs e)
|
|
{
|
|
// faccio refresh pagina...
|
|
}
|
|
/// <summary>
|
|
/// Imposta vilibilità componente search globale
|
|
/// </summary>
|
|
public bool showSearch
|
|
{
|
|
get
|
|
{
|
|
return tpl_menuTop.showSearch;
|
|
}
|
|
set
|
|
{
|
|
tpl_menuTop.showSearch = value;
|
|
}
|
|
}
|
|
}
|
|
} |