Files
Samuele E. Locatelli 999027e40e nuove pag x errori
2020-08-18 09:46:31 +02:00

22 lines
677 B
C#

using SteamWare;
using System;
using System.Threading;
namespace NKC_WF.ErrorPages
{
public partial class _404 : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
var thisMaster = ((SiteContent)this.Master);
thisMaster.showSearch = false;
thisMaster.enableAnonym = true;
}
cmp_errorDetail.ErrorTitle = traduci("Err_404");
cmp_errorDetail.ErrorExpl = traduci("Err404Expl");
cmp_errorDetail.UserName = string.IsNullOrEmpty(User.Identity.Name) ? "N.A." : User.Identity.Name;
}
}
}