function PrintCurrentTime()Add JS reference in your aspx page as..
{
var currentTime = new Date()
var hours = currentTime.getHours()
var minutes = currentTime.getMinutes()
var suffix = "AM";
if (hours >= 12) {
suffix = "PM";
hours = hours - 12;
}
if (hours == 0) {
hours = 12;
}
if (minutes < 10)
minutes = "0" + minutes
document.write("<b>" + hours + ":" + minutes + " " + suffix + "</b>")
}
<script language="javascript" src="JScript.js"></script>
then make a call to PrintTime function as
<script type="text/javascript">
<!--
PrintCurrentTime();
//-->
</script>
Output: