Files
NKC/NKC_WF/site/ErrorsLog.aspx.cs
T
Samuele E. Locatelli f5fe640519 Ancora typo traduzioni
2020-08-14 14:14:41 +02:00

22 lines
527 B
C#

using SteamWare;
using System;
using System.Web.UI;
namespace NKC_WF
{
public partial class ErrorsLog : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
((SiteContent)this.Master).showSearch = false;
string PUID = memLayer.ML.QSS("PUID");
if (!string.IsNullOrEmpty(PUID))
{
cmp_ErrorsLog.Puid = PUID;
}
}
}
}
}