JavaScript Display Date Kodu
<!-- Description: A Javascript to display the date.
Browsers: All
Server requirements:N/A
Additional Information:
Note: paste this code into the page where you want to display the date. -->
<h4>It is now
<script type="text/javascript">
<!--
var currentTime = new Date()
var month = currentTime.getMonth() + 1
var day = currentTime.getDate()
var year = currentTime.getFullYear()
document.write(month + "/" + day + "/" + year)
//-->
</script>
</h4>