19 lines
444 B
C#
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");
|
|
}
|
|
}
|
|
}
|