using AppData;
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_batchList : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
///
/// Converte il codice stato in effettivo campo
///
///
///
public string BStatus(object _status)
{
string answ = "nd";
try
{
var bStatus = Enum.Parse(typeof(ComLib.BatchStatus), _status.ToString());
answ = bStatus.ToString();
}
catch
{ }
return answ;
}
///
/// comando reset
///
///
///
protected void lbtReset_Click(object sender, EventArgs e)
{
grView.SelectedIndex = -1;
grView.DataBind();
}
}
}