Files
gpw_testci/GPW_Smart/Timbrature.aspx.cs
2021-03-26 17:17:28 +01:00

18 lines
335 B
C#

using GPW_data;
using System;
using System.Web.UI;
namespace GPW_Smart
{
public partial class Timbrature : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
((Site)this.Master).showSearch = false;
utils.mng.dailyDuties();
}
}
}
}