[ ID = 3529 ] | IVG |
Organisation name | Infovision Group |
Short name or acronym | IVG |
Organisation type | Other |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | 339, Udyog Vihar, Phase IV, |
Postal Code | 122015 |
City | Gurgaon |
Country | India |
Phone | +91-124 5001100 |
Fax | +91-124 2451197 |
Email | yatindra.singh_(on)_infovisiongroup.com |
Organisation URL | http://www.infovisiongroup.com |
Logo | Description |
 |
InfoVision Group (IVG) is one of the largest independent IT enabled services
companies in India. With over 14 years of experience and 3200 employees focused
on delivering solution in running call centers, database management and back
office support services for domestic and international customers, IVG has the
necessary resources and expertise to be able to successfully set up and manage
projects on a global scale.
IVGs domestic and international operations operate under its group
companies InfoVision Solutions & InfoVision International respectively.
|
| Contact |
Name | Call Center Services Parul Sharma |
Function | Call Centers Services, Call Center Outsourcing, Answering Services, BPO Outsourcing and Customer Relationship Management |
Department | Web Promotion |
Email | yatindra.singh_(on)_infovisiongroup.com |
Phone | +91-124 5001100 |
Fax | +91-124 2451197 |
Update this profile
|
Last update: 2005-06-29 09:10:40
#!/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"
|