|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3129 ] | Dendral |
|---|---|
| Organisation name | Dendral Inc |
| Short name or acronym | Dendral |
| Organisation type | Software Developer |
| Activity type | |
| Address | Merlin House, Brunel Road, Theale, Berks |
| Postal Code | RG7 4AB |
| City | Theale |
| Country | United Kingdom |
| Phone | + 0118 902 6622 |
| Fax | + |
| sales_(on)_dendral.com | |
| Organisation URL | http://www.dendral.com |
| Logo | Description |
![]() |
Dendral SmartSell is a unique web service that intelligently guides a user through an interactive sales process. Customers get an online experience that more closely resembles a traditional face-to-face interaction with a highly trained sales professional who guides them through the sale of products and services-and learns about them in the process. DSS is based on Dendral's breakthrough Core Technology, which transforms conventional static libraries of information into intelligent communications processes. |
| Contact | |
| Name | Mr Oliver Mills |
| Function | Sales Director |
| Department | Sales and Business Development |
| omills_(on)_dendral.com | |
| Phone | + 0118 902 6622 |
| Fax | + |
|
|
Last update: 2003-02-25 13:15:50 #!/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" |