7d289a3b64
pulizia codice...
22 lines
651 B
C#
22 lines
651 B
C#
using SteamWare;
|
|
using System;
|
|
|
|
public partial class mod_unauthorized : System.Web.UI.UserControl
|
|
{
|
|
/// <summary>
|
|
/// wrapper traduzione
|
|
/// </summary>
|
|
/// <param name="lemma"></param>
|
|
/// <returns></returns>
|
|
public string traduci(object lemma)
|
|
{
|
|
return user_std.UtSn.Traduci(lemma.ToString());
|
|
}
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
lblTitle.Text = traduci("PageUnavailable");
|
|
lblMess.Text = traduci("userNotAuthorized");
|
|
lblSupport.Text = string.Format("<a href=\"mailto:{0}\">{1}</a>", memLayer.ML.CRS("appAdminEmail"),traduci("RichiestaSupporto"));
|
|
}
|
|
}
|