|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3419 ] | IGS |
---|---|
Organisation name | InterActyve Global Services |
Short name or acronym | IGS |
Organisation type | Private company |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | K-10/33, DLF City |
Postal Code | 122002 |
City | Gurgaon |
Country | India |
Phone | + |
Fax | + |
info_(on)_interactyve.com | |
Organisation URL | http://www.interactyve.com |
Logo | Description |
![]() |
InterActyve Global Services (InterActyve) is a Company based out of India that focuses on assisting its Clients achieve superior results through consulting & management of offshore Information Technology & Business Process Outsourcing services. InterActyve not only allows Clients to better the time and cost saving commitments, but also assists them with the technology and acquisition of intellectual capital. Our Offshoring Strategies transfer our expertise to you so that you can handle the traditional business economics at a significantly lower expense. Forging an alliance with InterActyve Global Services allows Clients to have a seamless project migration and execution. Our flexible resources allow Clients to implement strategies and change at an accelerated yet controlled rate. |
Contact | |
Name | Sumit Malhotra |
Function | Partner |
Department | Management |
sumit_(on)_interactyve.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2004-09-17 15:36:55 #!/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" |