Organisation profile: Sage Research, Inc.
[ ID = 0392 ] | Sage Research, Inc. |
Organisation name | Sage Research, Inc. |
Short name or acronym | Sage Research, Inc. |
Organisation type | Company |
Activity type | Market Research |
Address | 220 North Main Street |
Postal Code | 01760 |
City | Natick, MA |
Country | United States |
Phone | + +1 508 655 5400 |
Fax | + +1 508 655 5516 |
Email | cathyl_(on)_sageresearch.com |
Organisation URL | http://www.sageresearch.com |
Logo | Description |
 |
Sage Research, Inc. is a full-service market research and consulting firm providing global demand-side research to technology product and service providers. With in-depth experience in the networking and telecommunications markets, Sage delivers actionable data and recommendations based on the most current qualitative and quantitative methods. Practice areas include customer loyalty, market segmentation, brand equity, business case validation, technology adoption, and product concept testing. Founded in 1993, Sage serves a broad client base that includes industry leaders and innovative start-ups.
|
| Contact |
Name | Cathy Leonard |
Function | Sales |
Department | Sales |
Email | cathyl_(on)_sageresearch.com |
Phone | + 508-429-9682 |
Fax | + 508-429-3097 |
Update this profile
|
Last update: 2002-04-23 17:37:58
#!/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"
|
|