Files

20 lines
470 B
C#

using AppData;
using System;
namespace C_TRACK.WebUserControls
{
public partial class mod_fasiAttive : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void lbtCloseAll_Click(object sender, EventArgs e)
{
// chiama la procedura che chiude tutte la fasi rimaste attive...
DLMan.taTR.closePending();
Response.Redirect("~/task");
}
}
}