Organisation profile: Icon Data Management Ltd,India
[ ID = 3152 ] | Icon Data Management Ltd,India |
Organisation name | Icon Data Management Ltd,India |
Short name or acronym | Icon Data Management Ltd,India |
Organisation type | Call Center, Back office operation |
Activity type | |
Address | C 39, sector 58 |
Postal Code | 201301 |
City | NOIDA |
Country | India |
Phone | + +91 120 2589919,+91 98 113 21992 |
Fax | + +91 120 2589911 |
Email | bcjain_(on)_idml.net |
Organisation URL | http://www.e-icondata.com |
Logo | Description |
 |
We are a 225 seat call center providing Inbound,outbound and back office
services to USA/UK based clients. We belong to a large Indian corporate with a
vision to expand through quality services and alliances in different countries.
We partner with service providers in different countries to levearage upon
locational advantages of each country, client base and domain expertise and
would grow to 5000 seats in next three years.
|
| Contact |
Name | Mr Bimlesh Jain |
Function | COO |
Department | Management |
Email | bcjain_(on)_idml.net |
Phone | + +91 120 2589919 |
Fax | + +91 120 2589911 |
Update this profile
|
Last update: 2003-05-09 08:42:23
#!/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"
|
|