|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3921 ] | eSCL Global |
|---|---|
| Organisation name | eSCL Global |
| Short name or acronym | eSCL Global |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | 680-681, Udyog Vihar, Phase 5 |
| Postal Code | 122002 |
| City | Gurgaon |
| Country | India |
| Phone | +91 1242451245 |
| Fax | +91 1242451245 |
| info_(on)_esclglobal.com | |
| Organisation URL | http://www.esclglobal.com |
| Logo | Description |
![]() |
eSCL Global is an ISO 9001:2000 certified International Call Center located in the National Capital Territory of Delhi (Gurgaon), India. We are a Business Services Company and specializes in providing a wide variety of high quality Call Centre and Business Process Outsourcing solutions to large and medium enterprises worldwide. |
| Contact | |
| Name | Ms. Neha Arora |
| Function | |
| Department | |
| info_(on)_esclglobal.com | |
| Phone | +91 1242451245 |
| Fax | +91 1242451245 |
|
|
Last update: 2008-11-12 12:15:02 #!/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" |