|  [ ID = 3718 ]  | Drishti  | 
| Organisation name | Drishti Soft Solutions Pvt Ltd  | 
| Short name or acronym | Drishti  | 
| Organisation type | Private company  | 
| Activity type | Language or Speech Technology provider  | 
| Address  | SCO 36 Sector 31  | 
| Postal Code  | 122001  | 
| City  | Gurgaon  | 
| Country  | India  | 
| Phone  | +91 1244085120 | 
| Fax  | +91 1244039120 | 
| Email  | info_(on)_drishti-soft.com  | 
| Organisation URL  | http://www.drishti-soft.com  | 
| Logo | Description  | 
  | 
Drishti is a Telecommunications Product company focussed on Unified 
Communications Products. Our product porflio includes, Predictive Dialers, ACD, 
IVRS, Voice Logger and Integrated CRM. 
  | 
| 
  
 | Contact | 
| Name | Director - Business Development Sachin bhatia  | 
| Function | Business Development, International Markets  | 
| Department | Business Development  | 
| Email | info_(on)_drishti-soft.com  | 
| Phone | +91 0124 4085120 | 
| Fax | +91 0124 4039120 | 
 
 
Update this profile
 | 
Last update: 2006-11-09 16:53:49
#!/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"
 |