36 lines
722 B
C#
36 lines
722 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace NKC_WF
|
|
{
|
|
public partial class SiteMaster : MasterPage
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
cmp_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 cmp_menuTop.showSearch;
|
|
}
|
|
set
|
|
{
|
|
cmp_menuTop.showSearch = value;
|
|
}
|
|
}
|
|
}
|
|
} |