Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Display current time and date in your Jsp page
12-13-2011, 04:26 AM (This post was last modified: 12-13-2011 04:27 AM by rajasri.)
Post: #1
Video Display current time and date in your Jsp page
Here we are going to know how to display current time and date using javascript in Jsp or Html pages.

Quote:<div class="form">
<span id="my_clock"></span>
</div>

<script type="text/javascript">

function startclock()
{
var thetime=new Date();
var nhours=thetime.getHours();
var nmins=thetime.getMinutes();
var nsecn=thetime.getSeconds();
var nday=thetime.getDay();
var nmonth=thetime.getMonth();
var ntoday=thetime.getDate();
var nyear=thetime.getYear();
var AorP = (nhours >= 12) ? "P.M." : "A.M.";
if (nhours>=13)
nhours-=12;
if (nhours99) && (nyear<2000))
nyear+=1900;

var clock_span = document.getElementById("my_clock"); clock_span.innerHTML = nhours+":"+nmins+":"+nsecn+" "+AorP+" "+nday+", "+nmonth+"/"+ntoday+"/"+nyear;

setTimeout('startclock()',1000);
}

if (document.getElementById && document.createTextNode)
{
startclock();
}
</script>


You may save this file seperately as "filename.jsp" and use <jsp:include page="filename.jsp"/>to view time in jsp page or use the script inside jsp page as well. Normally use script and jsp seperately to find bug easily. You can use this script in any language like php,.net etc.

Happy Coding
Find all posts by this user
Add Thank You Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies Views: Last Post
Big Grin In Tomcat jsp page is not refreshing rajasri 0 62 12-19-2011 10:41 PM
Last Post: rajasri
Shocked Finding created/modified time of files in a folder rajasri 0 47 12-19-2011 10:20 PM
Last Post: rajasri
Lightbulb compare current time with database retrieved time in jsp rajasri 0 73 12-19-2011 09:47 PM
Last Post: rajasri
Thumbs Up Display combo box value/Database value on same JSP page rajasri 0 73 12-19-2011 09:27 PM
Last Post: rajasri
Its My Birthday! Display database value in jsp page rajasri 0 240 12-14-2011 04:13 PM
Last Post: rajasri
Video simple update query in jsp page rajasri 0 358 12-14-2011 04:06 PM
Last Post: rajasri
Shocked update using parameters in jsp page rajasri 0 165 12-14-2011 04:04 PM
Last Post: rajasri
Big Grin using session to protect a page in jsp rajasri 0 216 12-13-2011 04:47 AM
Last Post: rajasri
Star Getting number of rows in jsp page rajasri 0 234 12-13-2011 04:23 AM
Last Post: rajasri
Star Read data from xml and show in jsp page project download rajasri 0 326 12-13-2011 04:00 AM
Last Post: rajasri

Forum Jump:


User(s) browsing this thread: 1 Guest(s)


WE will share important jobs and updates on facebook so like us to get updates