Form Load Event Show Date Format
=========================
<script>
function JscriptDate() {
var test = new Date();
var tt = test.getDate().toString() + "/"+test.getMonth().toString()+"/"+test.getFullYear().toString();
alert(tt);
}
</script>
</head>
<body onload="JscriptDate();">