Files
MoonPro.net/MP-MAG/WebUserControls/cmp_packListNew.ascx.cs
T
2020-12-31 10:35:24 +01:00

27 lines
638 B
C#

using MagData;
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_packListNew : BaseUserControl
{
#region Protected Methods
protected void lbtAddNew_Click(object sender, EventArgs e)
{
MagDataLayer.man.taPList.insertQuery(txtDescrPack.Text.Trim(), ddlElencoCli.SelectedValue);
raiseAddNew();
}
protected void Page_Load(object sender, EventArgs e)
{
}
#endregion Protected Methods
}
}