29 lines
731 B
C#
29 lines
731 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}' OR URL = '{0}.aspx'", _paginaCorrente))[0];
|
|
_titolo = riga.NOME;
|
|
lblTitolo.Text = traduci(_titolo);
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
}
|