Files
MoonPro.net/MP-IO/Default.aspx.cs
T
2017-04-14 13:56:01 +02:00

17 lines
472 B
C#

using System;
using System.Configuration;
using System.Web.UI;
namespace MP_IO
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
lblVers.Text = string.Format("{0} v.{1}", ConfigurationManager.AppSettings.Get("appName"), System.Reflection.Assembly.GetExecutingAssembly().GetName().Version);
}
}
}
}