|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1423 ] | Association of Support Professionals |
---|---|
Organisation name | Association of Support Professionals |
Short name or acronym | Association of Support Professionals |
Organisation type | Association |
Activity type | Call centers |
Address | 66 Mt. Auburn St |
Postal Code | 02472 |
City | Watertown, Mass. |
Country | United States |
Phone | + +1 617 924 3944 |
Fax | + +1 617 924 7288 |
asp_(on)_softletter.com | |
Organisation URL | http://www.asponline.com/ |
Logo | Description |
![]() |
The Association of Support Professionals is an international organization dedicated to the advancement of the technical support profession and a community where individual members can share ideas, insights, and experiences with their colleagues. The ASP formed in 1995 under the guidance of executive director Jeffrey Tarter. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32: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" |