Files
NKC/NKC_WF/WebUserControls/cmp_KS_currCart.ascx.cs
T
Samuele E. Locatelli 46f54d0e02 Continuo scarico KIT
2020-07-22 17:32:10 +02:00

42 lines
841 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace NKC_WF.WebUserControls
{
public partial class cmp_KS_currCart : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
public int CurrId
{
get
{
int answ = 0;
int.TryParse(hfValue.Value, out answ);
return answ;
}
set
{
hfValue.Value = value.ToString();
}
}
public string Dtmx
{
get
{
return lblDtmx.Text;
}
set
{
lblDtmx.Text = value;
}
}
}
}