Files
NKC/NKC_WF/site/MachineLoadSmart.aspx.cs
T
2021-07-13 17:38:03 +02:00

34 lines
710 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.site
{
public partial class MachineLoadSmart : BasePage
{
#region Private Methods
private void forceRefresh()
{
cmp_stackLoading.doUpdate();
}
#endregion Private Methods
#region Protected Methods
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
((SiteMaster)this.Master).showSearch = false;
forceRefresh();
}
}
#endregion Protected Methods
}
}