7d289a3b64
pulizia codice...
11 lines
353 B
C#
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"));
|
|
}
|
|
}
|