|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1632 ] | Lucent Technologies NetCare Services |
---|---|
Organisation name | Lucent Technologies NetCare Services |
Short name or acronym | Lucent Technologies NetCare Services |
Organisation type | Company |
Activity type | Call centers |
Address | |
Postal Code | |
City | |
Country | United States |
Phone | + +1 303 846 0100 |
Fax | + |
netcare_(on)_lucent.com | |
Organisation URL | http://www.songwriter.com/netcare |
Logo | Description |
![]() |
We're Lucent Technologies NetCare Services, a global business specializing in the conception, design, deployment, and management of complex communications solutions. Our 1100 professionals deployed around the world possess the highest levels of technical, industry and consulting experience, leveraging our Bell Labs innovations and our 125-years of communications heritage. Today, Lucent Technologies holds critical leadership positions in switching technologies, visual services, Call Center solutions, and more. Seventy percent of Fortune 500 companies benefit from NetCare Services, with a total customer base of over 5,000. With our world class people and technology base, no company is better qualified to optimize the communications solutions on which your company depends. |
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" |