Files
WebGIM/GIM_site/WebUserControls/mod_titlePortable.ascx.cs
Samuele E. Locatelli 7d289a3b64 Remove & Sort Using...
pulizia codice...
2017-04-14 16:33:09 +02:00

11 lines
353 B
C#

using System;
using System.Configuration;
public partial class mod_titleMini : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
lblTitle.Text = string.Format("<b>{0} {1}</b>", ConfigurationManager.AppSettings.Get("portableAppName"), ConfigurationManager.AppSettings.Get("portableAppVersion"));
}
}