17 lines
428 B
C#
17 lines
428 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);
|
|
}
|
|
}
|
|
}
|
|
} |