Files
GPW/GPW_Admin/WebUserControls/cmp_dip2gruppi.ascx.cs
T
2022-01-28 11:23:50 +01:00

28 lines
542 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace GPW_Admin.WebUserControls
{
public partial class cmp_dip2gruppi : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
public string gruppoSel
{
get => hfGruppo.Value;
set
{
hfGruppo.Value = value;
grView.DataBind();
}
}
}
}