31 lines
637 B
C#
31 lines
637 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace MP_MAG.WebUserControls
|
|
{
|
|
public partial class cmp_destClienti : System.Web.UI.UserControl
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
public string codCli
|
|
{
|
|
get
|
|
{
|
|
return hfCodCli.Value;
|
|
}
|
|
set
|
|
{
|
|
hfCodCli.Value = value;
|
|
grView.DataBind();
|
|
grView.SelectedIndex = -1;
|
|
}
|
|
}
|
|
}
|
|
} |