Files
MoonPro.net/MP-IO/Default.aspx.cs
T
2020-11-20 16:59:57 +01:00

22 lines
590 B
C#

using System;
using System.Configuration;
using System.Web.UI;
namespace MP_IO
{
public partial class Default : System.Web.UI.Page
{
#region Protected Methods
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);
Response.Redirect("status");
}
}
#endregion Protected Methods
}
}