Files
C.TRACK/C-TRACK/WebUserControls/mod_task2post.ascx.cs
T
2019-08-13 12:16:15 +02:00

31 lines
552 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace C_TRACK.WebUserControls
{
public partial class mod_task2post : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// Stato TASK da mostrare
/// </summary>
public string statoTask
{
get
{
return hfStatoComm.Value;
}
set
{
hfStatoComm.Value = value;
}
}
}
}