Members

Technology Zones

IBM Learning Center

Articles

Hosted By

MaximumASP

Info

Rated
Read 22,463 times

Related Categories

Display the Current Day of the Week

davepamn

Demonstrates how to display the current day of the week.

<script language="javascript">
var DayOfWeek;
function fncDayOfWeek()
{
var stDate;
var now;
var assoc= new Array(7);
assoc[0]="Sunday";
assoc[1]="Monday";
assoc[2]="Tuesday";
assoc[3]="Wednesday";
assoc[4]="Thursday";
assoc[5]="Friday";
assoc[6]="Saturday";
now= new Date();
stDate=now.getDay();
return(assoc[stDate]);
}

document.write('<B>Current Day of the Week:</b>' + DayOfWeek);

</script>

NishiSoft provides Part I of the Information Technology Project collaboration. Sign up and list your IT project tasks, assign task too friends, and get percent complete task. Part will include a work order system with NishiSoft acting as the middle man between software task order, verification of requirements meet and services delivered, and generation of the voucher for payment between parties.

Comments