Files
C.TRACK/C-TRACK/WebUserControls/mod_fasiAttive.ascx.cs
T
Samuele E. Locatelli 862123ca26 FIX controllo commessa
2018-09-21 18:18:27 +02:00

20 lines
440 B
C#

using AppData;
using System;
namespace C_TRACK.WebUserControls
{
public partial class mod_fasiAttive : System.Web.UI.UserControl
{
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...
dataLayer.man.taTR.closePending();
Response.Redirect("~/task");
}
}
}