Files
b2bcondomini.it/PUB/WebUserContols/mod_ER_acts.ascx.cs
T
2018-07-28 12:45:08 +02:00

33 lines
636 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace PUB.WebUserContols
{
public partial class mod_ER_acts : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// Richiesta di cui mostrare la history
/// </summary>
public int IdxRichiesta
{
get
{
int answ = 0;
int.TryParse(hfIdxRichiesta.Value, out answ);
return answ;
}
set
{
hfIdxRichiesta.Value = value.ToString();
}
}
}
}