iniziato pagina StackLoad

This commit is contained in:
Samuele E. Locatelli
2019-09-03 12:59:07 +02:00
parent 843aa269fd
commit 9cf952075e
15 changed files with 632 additions and 20 deletions
@@ -0,0 +1,32 @@
using System;
namespace NKC_WF.WebUserControls
{
public partial class cmp_stackNextloading : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
public int BatchId
{
set
{
hfBatchID.Value = value.ToString();
doUpdate();
}
get
{
int answ = 0;
int.TryParse(hfBatchID.Value, out answ);
return answ;
}
}
public void doUpdate()
{
frmView.DataBind();
}
}
}