using SteamWare; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace WebLCP { public partial class SiteMaster : MasterPage { protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { Page.Title = titolo; } } /// /// titolo pagina /// public string titolo { get { return devicesAuthProxy.getPage(Request.Url); } } } }