Files
NKC/NKC_WF/WebUserControls/cmp_KR_cart.ascx.cs
T
Samuele E. Locatelli 9cbc82d7ef FIX gestione KART SMART
2020-08-10 17:37:43 +02:00

41 lines
836 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_KR_cart : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// Cart selezionato
/// </summary>
public int PackListID
{
get
{
int answ = 0;
int.TryParse(hfPackListID.Value, out answ);
return answ;
}
set
{
hfPackListID.Value = value.ToString();
grView.DataBind();
}
}
internal void doUpdate()
{
grView.DataBind();
}
}
}