19 lines
363 B
C#
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
|
|
}
|
|
} |