Files
Samuele Locatelli 12be248182 rename progetto...
2013-10-04 08:50:57 +02:00

19 lines
444 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Configuration;
namespace GMW.WebMasterPages
{
public partial class AjaxSimpleFull : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
Page.Title = ConfigurationManager.AppSettings.Get("_titoloPagina");
}
}
}