Files
limanapp/GeLiSt/WebUserControls/mod_pageTitleAndSearch.ascx.cs
Samuele Locatelli a196544a6c Legacy site commit
2021-10-07 16:23:17 +02:00

29 lines
711 B
C#

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using SteamWare;
public partial class mod_pageTitleAndSearch : ApplicationUserControl
{
#region area protected
protected string _titolo;
protected override void traduciObj()
{
DataLayer_AnagGen.PermessiRow riga = (DataLayer_AnagGen.PermessiRow)user_std.UtSn.permessi.Select(string.Format("URL = '{0}'", _paginaCorrente))[0];
_titolo = riga.NOME;
lblTitolo.Text = traduci(_titolo);
}
#endregion
}