28 lines
531 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
} |