Files
C.TRACK/MP-MAG/SMART/selector.aspx.cs
T
Samuele E. Locatelli 90481bcd36 Fix search x master
2020-03-13 19:27:21 +01:00

20 lines
391 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MP_MAG.SMART
{
public partial class selector : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
((Site)this.Master).showSearch = false;
}
}
}
}