|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4816 ] | NetSource |
---|---|
Organisation name | NetSource |
Short name or acronym | NetSource |
Organisation type | Other |
Activity type | Other Call Center related expertise |
Address | Royal Road, Ebene |
Postal Code | 72203 |
City | Ebene |
Country | Mauritius |
Phone | +230 |
Fax | + |
www.info_(on)_netsource.mu | |
Organisation URL | http://www.netsource.mu |
Logo | Description |
![]() |
Every day, our clients entrust their customers and business to our bilingual (English and French) employees, who engage in telephone and Internet contact, call center operations, information technologies and management, telecommunications, sales, customer service and marketing efforts. We provide clients with: Higher quality telephone and web-based customer service and sales operations Lower base operating costs Maximum customer value We deliver through: Specialized computer telephony technologies Call center development experience Human resources management and process expertise Businesses intent on growth simply cannot cost effectively develop the same in-house level of sophistication in technology and human resources. By outsourcing customer service and sales to NetSource Ltd, businesses preserve capital resources, reduce cycle time and improve corporate performance. |
Contact | |
Name | Mr Jey Hades |
Function | Business Developer |
Department | Marketing |
www.jav_(on)_netsource.mu | |
Phone | +230 |
Fax | + |
![]() |
Last update: 2016-07-28 09:38:03 #!/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" |