/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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. namespace Kronos
  8. {
  9. public partial class Site1 : System.Web.UI.MasterPage
  10. {
  11. protected void Page_Load(object sender, EventArgs e)
  12. {
  13. Label1.Text = Convert.ToString(DateTime.Now.Year);
  14. }
  15. }
  16. }