Assign DateTime value to asp:Label (C#) : DateTime « Development « ASP.NET Tutorial






<%@Page Language="C#" %>

<script runat="server">
   void Page_Load(Object Sender, EventArgs e) {
      DateTime Now = DateTime.Now;
      int intHour = Now.Hour;

      Label1.Text = "The time is now " + Now.ToString("T") + "";

      if (intHour < 12) {
         Label1.Text +="Good morning!";
      } else if (intHour > 12 & intHour < 18) {
         Label1.Text +="Good afternoon!";
      } else {
         Label1.Text +="Good evening!";
      }
   }
</script>

<html><body>
   <form runat="server">
      <asp:Label id="Label1" runat="server"/>
   </form>
</body></html>








9.11.DateTime
9.11.1.Today.Ticks
9.11.2.Assign DateTime value to asp:Label (C#)
9.11.3.Set the asp:Label in code behind based on current time (VB.net)
9.11.4.DateTime.Now.ToShortDateString()
9.11.5.Calculates the number of days until a given date
9.11.6.DateTime and TimeSpan
9.11.7.Format DateTime
9.11.8.Format DateTime variable (VB)
9.11.9.Format DateTime variable (C#)