13 lines
378 B
C#
13 lines
378 B
C#
using System;
|
|
|
|
namespace MP_ADM.WebUserControls
|
|
{
|
|
public partial class mod_footer : System.Web.UI.UserControl
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
lblLastUpdt.Text = DateTime.Now.ToString("yyyy.MM.dd HH:mm:ss");
|
|
lblVers.Text = string.Format("v.{0}", System.Reflection.Assembly.GetExecutingAssembly().GetName().Version);
|
|
}
|
|
}
|
|
} |