[ ID = 3410 ] | Agni e-Solutions |
Organisation name | Agni e-Solutions |
Short name or acronym | Agni e-Solutions |
Organisation type | Private company |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | B - 71, Okhla Phase - II, New Delhi |
Postal Code | 10020 |
City | New Delhi |
Country | India |
Phone | + +911151707182 / 3 |
Fax | + +911151707184 |
Email | agniees_(on)_agniesolutions.com |
Organisation URL | http://www.agniesolutions.com |
Logo | Description |
 |
AGNI E-SOLUTIONS combines the use of highly effective and empowered team with a service framework that works on state-of-the-art communications and information technologies. Through immaculate techniques evolved as a result of tested processes, AGNI E-SOLUTIONS derives and conveys genuine pleasure in serving its customers and end-consumers continually.
|
| Contact |
Name | Sr. Manager, Corporate Affairs Smriti Baliga |
Function | |
Department | |
Email | agniees_(on)_agniesolutions.com |
Phone | + +911151707182 / 3 extn. 26 |
Fax | + +911151707184 |
Update this profile
|
Last update: 2005-01-27 08:49:52
#!/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"
|