Files
NKC/NKC_WF/site/Painting.aspx.cs
T
2020-08-06 16:12:17 +02:00

20 lines
429 B
C#

using System;
namespace NKC_WF
{
public partial class Painting : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
((SiteContent)this.Master).showSearch = false;
}
}
protected void timerPainting_Tick(object sender, EventArgs e)
{
cmp_painting.doUpdate();
}
}
}