Display Current Date Time on WebSite
Label Display Current Date and Time Using JavaScript timeout Set Interval Update Every Seconds in Asp.Net C#.
Download Coding
Download
DEMO
HTML CODING
C# CODING
Next - Add JavaScript file For Current Time & Date Display Set TimeOut For EverySeconds.
Next - CodeBehind - Page Load Event Add Datetime Now with Time Seconds.
Label Display Current Date and Time Using JavaScript timeout Set Interval Update Every Seconds in Asp.Net C#.
Download Coding
Download
DEMO
HTML CODING
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Display Current Date Time on WebSite Using in JavaScript
Asp.Net </title>
<script type="text/javascript">
function DateTime() {
window.setTimeout("DateTime()",
1000);
var TD = new Date();
document.getElementById("Label1").innerHTML
= TD.toLocaleString();
}
</script>
</head>
<body onload="DateTime()" >
<form id="form1" runat="server">
<asp:Label ID="Label1" ForeColor="Red" Font-Size="X-Large" runat="server"></asp:Label>
<br />
<asp:Label ID="Label2" ForeColor="Red" Font-Size="X-Large" runat="server" ></asp:Label>
</form>
</body>
</html>
C# CODING
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Label2.Text =
String.Format("{0}", DateTime.Now.ToString("dd/MM/yyyy hh:mm:ss Sec"));
}
}
First Create New WebForm - Add Two Labels From ToolBox - Change ForeColor & Size
Next - Add JavaScript file For Current Time & Date Display Set TimeOut For EverySeconds.
Next - CodeBehind - Page Load Event Add Datetime Now with Time Seconds.
Very good article
ReplyDelete