Files
NKC/NKC_WF/site/SpecPartMgmt.aspx.cs
samuele ceb4862ace PLANT:
- aggiunta stored x gestione plant
- modulo update plant
2022-10-25 20:52:32 +02:00

20 lines
435 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.site
{
public partial class SpecPartMgmt : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
((SiteContent)this.Master).showSearch = false;
}
}
}
}