Javascript to display time on Web page
JavaScript sample to continuously display the current time on the web page. Continuously means that the textbox value will be updated with the current time every second.
<script type="text/javascript">
function ShowTime() {
var dt = new Date();
document.getElementById("<%= TextBox1.ClientID %>").value = dt.toLocaleTimeString();
window.setTimeout("ShowTime()", 1000);
}
</script>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<script type="text/javascript">
// a startup script to put everything in motion
window.setTimeout("ShowTime()", 1000);
</script>
If you are using normal web form then it can also be called on Body onload event. If you are using MasterPage then it can be called within ContentTemplate at the end after all the controls have been rendered.
Revision number 3, Saturday, February 16, 2008 5:45:41 AM by mbanavige
You must Login to comment.
|
Mon, Aug 10, 2009 5:54 AM
by apka.rajesh
|
Nice and Simple
|
|
Fri, Feb 19, 2010 9:07 PM
by PTom
|
This example shows how to periodically display the client time. Please advice how to display periodically the server time. Thanks, Paul
|
Revision #12
Mon, Feb 16, 2009 4:03 PM
by
|
Visual Studio 2008
Visual Studio 2008is theversion of Visual Studio which comes with the .NET Framework 3.5. It was released to MSDN subscribers on 19 November 2007 alongside the.NET Framework 3.5. Visual Studio 2008 can target developmentin .NET Framework versions 2.0, 3.0
|
New
Mon, May 24, 2010 11:48 PM
by
|
Asp.net server controls in BlackBerry Browser
Hi All,Some of the asp.net server controls(.NET 2.0) like DropDownList control, LinkButton etc., has postback property. When User clicks or selects these controls, a Postback will occur. Let us consider LinkButton control, which is extension of the HyperLink
|
Revision #2
Thu, Mar 13, 2008 4:54 AM
by
|
Javascript to add bookmark option on your website
If it is required to add a facility on the webpage that users can click a button on the website and it will open up bookmark option. Following is the code that will perform this task. html>body>SCRIPT LANGUAGE="JavaScript"> function bookmark
|