Other great selections from our sponsors:
Department Store, Music Instrutments, bedding & home, Gift, Music Instrutments, Bedding & home, Computer, Jewelry, Home & Outdoor, Popcorn & gifts, bedding & bath, Skin Care, Pet Supplies, Department Store, Champion sports, Sporting goods for Women, Lighting & Fixtures, Camping & outdoor, Kids stuff, Discount Outlet, Outdoor & Garden, Home Floorings, Fossil brand, Gift basket, Home & House ware, Giftware, Bedding & Home Decor, Travel Supplies, Giftware, and Department Store


Q: What is NEWSchinese.com?
什麽是newschinese.com?
A: NEWSchinese.com is a service provided by w3com.com. NEWSchinese.com is for you to get the most up to date news around the Asian world.
Newschinese.com是由w3com.com提供的一項服務。Newschinese.com能為你取得亞洲世界裏最新鮮出爐的新聞。
Q: What kind of news does NEWSchinese.com have?
Newschinese.com有哪些類型的新聞?
A: We have headline news, international news, China/ Taiwan news, real time news, entertainment, financial, sports and forum.
我們有頭條新聞,國際新聞,兩岸新聞,即時新聞,娛樂新聞,財經新聞,體育新聞和論壇。
Q: Is this service FREE?
這些服務都是免費的嗎?
A: YES!! NEWSchinese.com is the first and only Chinese news provider that is FREE.
是的!!newschinese.com是第一個也是唯一一個免費的中文新聞提供者。
Q: Is NEWSchinese.com only in one language?
Newschinese.com只支持一種語言嗎?
A: YES! Only in Chinese.
是的!newschinese.com只支持中文。

Q: Are the news updated daily?
這些新聞都是每天更新的嗎?
A: YES! All daily news is updated daily at 6:00AM Hong Kong time. Real Time news is updated every 15 minutes.
是的!所有的當天新聞都是在每天香港時間早上6點正更新的。即時新聞是每15分鐘更新一次。

Q: How do I sign up as a member?
我如何註冊成爲會員?
A: Its easy just click on the signup area and fill in your email address and your password. We will send you an email within 15 minutes to confirm your registration.
非常簡單。只要點擊註冊區域並填入你的email地址和密碼。我們會在15分鐘内發一封電郵到你的信箱確認你的註冊。
help_signup.jpg


Q: Why do I need to fill in my email address?
我爲何需要填入我的電郵地址?
A: Your email address will be your user name to sign on to NEWSchinese.com. Also from time to time we will be sending out newsletter telling you whats new at NEWSchinese.com.
你的電郵地址就是你在newschinese.com的用戶名。我們也會經常發時事通訊來通知你newschinese.com的最新動態。

Q: What happens if I forgotten my password?
假如我忘記了密碼怎麽辦?
A: On our main screen click on the lost password button and enter your email address. We will send you your password through email.
在我們的主頁面點擊“密碼遺失”按鍵並輸入你的電郵地址。我們會通過電郵把密碼發給你。

Q: Can I change my password?
我可以更改我的密碼嗎?
A: YES! Go to our lost password session and type in your email address. We will email you your current password and a link to change your password.
是的!到我們的“密碼遺失”區域並輸入你的電郵地址。我們會發給你一封電郵,裏面有你現在密碼和一條可以讓你更改密碼的鏈接。

Q: How do I select news content?
我如何選擇新聞内容?
A: On the main screen you will see a list. The list is divided into categories. Click on the category to see what you want to look for.
在主頁面你會看見一張名單。名單是由各種類別組成。點擊類別查看你想要的新聞内容。

Q: How do I go to my member login area?
我如何到會員登陸區?
A: At the main screen you will see a place for you to enter your user name and password.
在主頁面你會看到一個地方讓你輸入用戶名和密碼。
help_login.jpg

Q: I cannot see the chinese characters properly, why?
我無法看到中文,爲什麽?

A: There is a known problem when using IE v5.0 or below with build-in Chinese encoding in English Windows environment. With included Javascript, the chinese characters do not shown properly.
有一個已知的問題。當在英文Windows環境下使用内建中文編碼的IE 5.0或以下版本時,如果包含有Javascript,中文字母無法正確顯示。

Following are supported environment when using Javascript:
以下是使用Javascript時的支持環境:

      When using IE 5.01 or above in English Windows environment, it works ok
在英文Windows環境下使用IE 5.01或以上版本,完全正常。
      When using Netscape or IE with Richwin in English Windows environment, it works ok
在英文Windows環境下與Richwin一起使用 Netscape 或 IE ,完全正常。
      When using Netscape or IE in Chinese Windows environment, it works ok
在中文Windows環境下使用Netscape 或 IE ,完全正常。
      When using Netscape in CLE Linux environment, it works ok
在CLE Linux環境下使用Netscape,完全正常。

Our suggestion is to use <IFRAME> for IE v4.0 or above Browsers as below
我們的建議是在IE 4.0或以上版本的瀏覽器中使用<IFRAME>,以下是例子:
:

    < iframe src="http://www.newschinese.com/getnews.php3?kantong88@yahoo.com" height=100% marginwidth=0 marginheight=0 hspace=0 vspace=0 frameborder=0 scrolling=auto></iframe>

  And use Javascript for all other Browsers
並在其他所有的瀏覽器中使用Javascript

    <SCRIPT LANGUAGE="JavaScript" SRC="http://www.newschinese.com/getnews.php3?kantong88@yahoo.com+js" >
</SCRIPT>

  To Detect the Browser, use the following script:
使用以下腳本程序檢測瀏覽器:

<SCRIPT LANGUAGE="javascript">
var an = navigator.appName;
var ua = navigator.userAgent
var msie = ua.indexOf ( "MSIE " )
var IEver = parseFloat ( ua.substring ( msie+5, ua.indexOf ( ";", msie ) ) )
 
if (an == 'Microsoft Internet Explorer') {
 if (IEver < 5.01) {
  window.location='news_if2.html'
 } else {
  window.location='news_js2.html'
 }
}else {
 window.location='news_js2.html'
}
</SCRIPT>

  Live examples as follows:
以下是即時例子:

    iFrame by html:
      
http://www.newschinese.com/samples/news_if2.html  (2 columns)
       http://www.newschinese.com/samples/news_if1.html  (1 column)
    Javascript by html: 
       http://www.newschinese.com/samples/news_js2.html  (2 columns)
       http://www.newschinese.com/samples/news_js1.html  (1 column)
    Automatic Browser Detection
       http://www.newschinese.com/samples/news.html