|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 0155 ] | TASKE Technology Inc. |
|---|---|
| Organisation name | TASKE Technology Inc. |
| Short name or acronym | TASKE Technology Inc. |
| Organisation type | Company |
| Activity type | Call centers |
| Address | 300 March Road, Suite 500 |
| Postal Code | K2K 2E2 |
| City | Kanata, ON |
| Country | Canada |
| Phone | + +1 613 591 9267 |
| Fax | + +1 613 592 7979 |
| sales_(on)_taske.com | |
| Organisation URL | http://www.taske.com |
| Logo | Description |
![]() |
TASKE Technology Inc. is a developer of intelligent call center management solutions, including Automatic Call Distribution (ACD) monitoring and analysis tools, workforce management software, and flexible voice messaging systems for a variety of PBX/Operating Systems. TASKE Technology ensures that wide-area and local-area call centers can service large numbers of telephone calls personally and effectively during peak traffic times. |
| Contact | |
| Name | |
| Function | |
| Department | |
| Phone | + |
| Fax | + |
|
|
Last update: 2002-04-10 12:32:58 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |