22 lines
527 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |