Files
MoonPro.net/MP-Tablet/WebUserControls/mod_footer.ascx.cs
T
2018-02-27 15:33:37 +01:00

28 lines
531 B
C#

using System;
namespace MoonProTablet.WebUserControls
{
public partial class mod_footer : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
updateLabels();
}
}
/// <summary>
/// Versione corrente sw
/// </summary>
public Version currVersion
{
get
{
return System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
}
}
private void updateLabels()
{
}
}
}