How to display time in asp.net

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Show_time_in_webpage._Default" %>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

    <title>Untitled Page</title>

</head>

<body>

    <form id="form1" runat="server">

    <div>

    <asp:ScriptManager ID="ScriptManager1"

            runat="server">

        </asp:ScriptManager>

<asp:Timer ID="Timer1" runat="server" Interval="100" ontick="Timer1_Tick">

                </asp:Timer>

        <asp:UpdatePanel ID="UpdatePanel1"

            runat="server">

            <ContentTemplate>

            <asp:Label ID="Label2"  Text="Current Time:" runat="server" Font-Bold="True"

                    ForeColor="#FF9900"></asp:Label>

                   <asp:Label ID="Label1" runat="server" Font-Bold="True" ForeColor="Maroon"></asp:Label>

                <br />

            </ContentTemplate>

            <Triggers>

                <asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick"></asp:AsyncPostBackTrigger>

            </Triggers>

        </asp:UpdatePanel>

        <br />

    </div>

    </form>

</body>

</html>

 

 

 

using System;

using System.Collections;

using System.Configuration;

using System.Data;

using System.Linq;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.HtmlControls;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Xml.Linq;

 

namespace Show_time_in_webpage

{

    public partial class _Default : System.Web.UI.Page

    {

 

        protected void Timer1_Tick(object sender, EventArgs e)

        {

            Label1.Text = DateTime.Now.ToString("hh:mm:ss");

        }

    }

}
output:
How to display time in asp.net


Post a Comment

0 Comments