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(); } } /// /// Versione corrente sw /// public Version currVersion { get { return System.Reflection.Assembly.GetExecutingAssembly().GetName().Version; } } private void updateLabels() { } /// /// Dimensione schermata video attuale /// public string videoSize { get { string answ = "?x?"; if (Session["BrowserWidth"] != null) { answ = string.Format("{0} x {1}", Session["BrowserWidth"], Session["BrowserHeight"]); } return answ; } } } }