/Kronos/Kronos/Site1.Master.cs
https://github.com/lle/soen341kronos · C# · 16 lines · 16 code · 0 blank · 0 comment · 0 complexity · 66b80fe943b464679f104bb9237e2ac9 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- namespace Kronos
- {
- public partial class Site1 : System.Web.UI.MasterPage
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- Label1.Text = Convert.ToString(DateTime.Now.Year);
- }
- }
- }