|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3425 ] | Tecnovate |
|---|---|
| Organisation name | Tecnovate eSolutions |
| Short name or acronym | Tecnovate |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Lang+Speech Technology |
| Address | 34, Okhla Phase -3 |
| Postal Code | 110020 |
| City | New delhi |
| Country | India |
| Phone | + +91 11 51293205 |
| Fax | + +91 11 2633 2760 |
| alok.chopra_(on)_tecnovate.co.in | |
| Organisation URL | http://www.tecnovate.co.in |
| Logo | Description |
![]() |
Tecnovate eSolutions is a pioneer in Multilingual Offshore Business Process Outsourcing in India, successfully servicing clients operating in Travel & Hospitality, Retail, Technology, Insurance and Finance verticals across Europe and the US in 9 different languages (English, Spanish, French, German, Swiss, Dutch, Finnish, Swedish and Norwegian). Tecnovate has emerged as a high-end, BPO solutions partner, gaining in-depth experience by transitioning and successfully servicing diverse processes across a spectrum of Contact Centre Services, Information Technology Services and BPO services including Back-office Administrative Services & Finance and Accounting Services. |
| Contact | |
| Name | Mr. Alok Chopra |
| Function | Business Development |
| Department | Business Development |
| alok.chopra_(on)_tecnovate.co.in | |
| Phone | + + 91 98103 97925 |
| Fax | + +91 11 2633 2760 |
|
|
Last update: 2004-09-28 16:12:30 #!/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" |