31 lines
552 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
} |