|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3138 ] | EDUSERVE |
---|---|
Organisation name | EDUSERVE INTERNATIONAL LTD. |
Short name or acronym | EDUSERVE |
Organisation type | AUDIO VISUAL |
Activity type | |
Address | Rm 1104, 11/F, Eastern Harbour Centre, 28 Hoi Chak Street, Quarry Bay, Hong Kong |
Postal Code | 852 |
City | Hong Kong |
Country | Hong Kong |
Phone | + (852) 2104-1183 |
Fax | + (852) 2590-0332 |
info_(on)_eduserve.com.hk | |
Organisation URL | http://www.eduserve.com.hk |
Logo | Description |
![]() |
EduServe is one of Hong Kong's leading AV/IT solution providers for education and conference environment. The company is also an accredited distributor and specialist of world reowned products such as Tandberg language learning systems, Da-Lite projection screens, DIS interpretation & conference systems and Minicom computer networking devices. Since her establishment in 1987, EduServe has founded a strong customer base covering educational institutes, corporations and hotels, government and religious bodies as well as a wide array of AV/IT dealers. As a professional total solution provider, our one-stop service includes systems design and equipment supply, project management, system integration, programming, test and commissioning, training & repair/maintenance. |
Contact | |
Name | Marketing Officer Amelia Yeung |
Function | |
Department | Marketing |
amelia_(on)_eduserve.com.hk | |
Phone | + (852)2104-1183 |
Fax | + (852) 2590-0332 |
![]() |
Last update: 2003-04-11 11:00:57 #!/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" |