Files
2021-05-12 18:00:20 +02:00

19 lines
363 B
C#

using System;
namespace MP_ADM
{
public partial class menu : BasePage
{
#region Protected Methods
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
((MoonPro)this.Master).showSearch = false;
}
}
#endregion Protected Methods
}
}