|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3960 ] | TransData |
---|---|
Organisation name | TransData Pvt. Ltd. |
Short name or acronym | TransData |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | B-300 Glamour Heights, Waris Road |
Postal Code | 54000 |
City | Lahore |
Country | Pakistan |
Phone | +92 3002201625 |
Fax | +1 8004806794 |
Jawad.Khan_(on)_TransData.biz | |
Organisation URL | http://www.TransData.biz |
Logo | Description |
![]() |
TransData, a rapidly growing outsourced call center services provider for quality Customer Services, is supporting the entire customer life-cycle from front-office customer interaction to back-office reverse logistics. For the past half decade, TransData has been providing cost effective quality services for clients from different countries. We provide customized solutions open to the wide-ranging requirements of our each customer at a very logical price. This philosophy has resulted us the long-term customer loyalty. We staff our center with the friendliest representatives, using the latest technology that allows them to correspond with customers in the best possible efficient and effective manner. The end result is that TransData is typically at the lower end of the scale from a pricing angle without compromising the quality that is expected from a partner. Our goal is to create a seamless link among our client-partners and their end-users customized to the particular needs. We sketch our operations and feedback for the services we provide, to closely interweave with our client-partner operations. |
Contact | |
Name | Mr. Jawad Khan |
Function | Director |
Department | Outsourcing & Business Development |
Jawad.Khan_(on)_TransData.biz | |
Phone | +92 3002201625 |
Fax | +1 8004806794 |
![]() |
Last update: 2009-02-06 21:06:11 #!/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" |