<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>eCommerce - Webmaster Resource- 电子商务</title>
	<atom:link href="http://blog.toplistweb.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.toplistweb.com</link>
	<description></description>
	<lastBuildDate>Mon, 26 Oct 2009 01:30:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to protect articles and images on your website</title>
		<link>http://blog.toplistweb.com/2009/10/how-to-protect-articles-and-images-on-your-website/</link>
		<comments>http://blog.toplistweb.com/2009/10/how-to-protect-articles-and-images-on-your-website/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 09:35:21 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/05/how-to-protect-articles-and-images-on-your-website/</guid>
		<description><![CDATA[How to protect articles and images on your wesite from being copyed and pasted? Following methods can make it harder for web content theft.

Method 1: disable right click，disable any paste and copy。
&#60;body topmargin=&#8221;0&#8243; leftmargin=&#82... ]]></description>
			<content:encoded><![CDATA[<p>How to protect articles and images on your wesite from being copyed and pasted? Following methods can make it harder for web content theft.</p>
<p><span id="more-147"></span></p>
<p><span style="COLOR: #ff0000"><span style="COLOR: #ff0000"><span style="COLOR: #ff0000">Method 1: disable right click</span>，disable any paste and copy。</span></span></p>
<p>&lt;body topmargin=&#8221;0&#8243; leftmargin=&#8221;0&#8243; bgcolor=&#8221;#ffffff&#8221; oncontextmenu=&#8217;return false&#8217; ondragstart=&#8217;return false&#8217; onselectstart =&#8217;return false&#8217; onselect=&#8217;document.selection.empty()&#8217; oncopy=&#8217;document.selection.empty()&#8217; onbeforecopy=&#8217;return false&#8217; onmouseup=&#8217;document.selection.empty()&#8217;&gt;</p>
<p>Explain:<br />
oncontextmenu=&#8217;return false&#8217; &lt;!&#8211;disable right click &#8211;&gt;<br />
ondragstart=&#8217;return false&#8217; onselectstart =&#8217;return false&#8217; onselect=&#8217;document.selection.empty()&#8217; oncopy=&#8217;document.selection.empty()&#8217; onmouseup=&#8217;document.selection.empty()&#8217;&lt;!&#8211;//disable select &#8211;&gt;<br />
onbeforecopy=&#8217;return false&#8217; &lt;!&#8211;disable copy&#8211;&gt;<br />
<span style="COLOR: #ff0000">Method 2: disable &#8220;save image as&#8221; function, without disable right click</span></p>
<p><span style="COLOR: #000000">In &#8220;</span>HEAD&#8221; section, add following code:<br />
&lt;meta http-equiv=&#8221;imagetoolbar&#8221; content=&#8221;no&#8221;&gt;</p>
<p>In&#8221;BODY&#8221;section, add following code:</p>
<p>&lt;script language=&#8221;javascript&#8221;&gt;<br />
function Click(){<br />
if(window.event.srcElement.tagName==&#8221;IMG&#8221;)<br />
{<br />
window.event.returnValue=false;<br />
}<br />
}<br />
document.oncontextmenu=Click;<br />
&lt;/script&gt;</p>
<p><span style="COLOR: #ff0000">Method 3: only disable copy and paste function</span> .</p>
<p>&lt;body self.event.returnValue=false onselectstart=&#8221;return false&#8221;&gt;</p>
<p><span style="COLOR: #ff0000">Method 4：disable image toolbar and right click on a image.</span></p>
<p>Disable image toolbar：&lt;img src=&#8221;EXAMPLE.jpg&#8221; width=&#8221;300&#8243; height=&#8221;300&#8243; galleryimg=&#8221;no&#8221;&gt;<br />
Disable right click：&lt;img src=&#8221;EXAMPLE.jpg&#8221; width=&#8221;300&#8243; height=&#8221;300&#8243; oncontextmenu=&#8221;return false&#8221;&gt;</p>
<p><span style="COLOR: #ff0000">Method 5: disable web cache.</span></p>
<p>First in &#8220;HEAD&#8221; section add following code:<br />
&lt;!&#8211; MICROSOFT/NETSCAPE/MOZILLA BROWSERS all add following tag &#8211;&gt;<br />
&lt;meta http-equiv=&#8221;Pragma&#8221; content=&#8221;no-cache&#8221;&gt;</p>
<p>&lt;!&#8211; MICROSOFT BROWSERS add following tag &#8211;&gt;<br />
&lt;meta http-equiv=&#8221;Expires&#8221; content=&#8221;-1&#8243;&gt;</p>
<p>Second between&lt;/body&gt;and &lt;/html&gt; insert following code:<br />
&lt;/body&gt;<br />
&lt;!&#8211; add additional HEAD code &#8211;&gt;<br />
&lt;head&gt;&lt;meta http-equiv=&#8221;Pragma&#8221; content=&#8221;no-cache&#8221;&gt;&lt;/head&gt;<br />
&lt;/html&gt;</p>
<p><span style="COLOR: #ff0000">Method 6: disable web browser.</span></p>
<p>For example, to disable: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Opera 7.54<br />
You can add following code in &#8220;JAVA&#8221; setting in &#8220;HEAD&#8221; section:<br />
if(navigator.userAgent.match(/Opera/ig)) {<br />
location.replace(&#8221;opera-not-supported.html&#8221;);<br />
}</p>
<p><span style="COLOR: #ff0000">Method 7: always use frame to hide your real URL.</span></p>
<p>&lt;script language=&#8221;javascript&#8221;&gt;&lt;!&#8211;<br />
if (window == top)top.location.href = &#8220;frames.htm&#8221;; //frames.htm为框架网页<br />
// &#8211;&gt;&lt;/script&gt;</p>
<p><span style="COLOR: #ff0000">Method 8：protect your page from being framed into otherone&#8217;s webpage.</span></p>
<p>&lt;SCRIPT LANGUAGE=javascript&gt;&lt;!&#8211;<br />
if (top.location != self.location)top.location=self.location;<br />
// &#8211;&gt;&lt;/SCRIPT&gt;</p>
<p><span style="COLOR: #ff0000">Method 9：encode your webpage and watermark your images.</span></p>
<p><span style="COLOR: #000000">1-8 methods can only make trouble to web theaf who know little about computers. A more effective method to protect your website content is to encode your webpage and water mark your images.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/10/how-to-protect-articles-and-images-on-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webpage looks good in IE, but has problem in FireFox</title>
		<link>http://blog.toplistweb.com/2009/10/webpage-looks-good-in-ie-but-has-problem-in-firefox/</link>
		<comments>http://blog.toplistweb.com/2009/10/webpage-looks-good-in-ie-but-has-problem-in-firefox/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 07:46:10 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[IE FIREFOX]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/07/webpage-looks-good-in-ie-but-has-problem-in-firefox/</guid>
		<description><![CDATA[ 
I just wrote a webpage. It looked good in IE, but had problem in FireFox
The title was down lower in the page.
After checked the HTML code, I find it&#8217;s because follow code:
&#60;td valign=&#8221;top&#8221;&#62;
VALIGN set in TD is invalid in Fire... ]]></description>
			<content:encoded><![CDATA[<p> <span id="more-192"></span>
<p>I just wrote a webpage. It looked good in IE, but had problem in FireFox</p>
<p>The title was down lower in the page.</p>
<p>After checked the HTML code, I find it&#8217;s because follow code:</p>
<p>&lt;td valign=&#8221;top&#8221;&gt;</p>
<p>VALIGN set in TD is invalid in FireFox.</p>
<p>Changed to:</p>
<p>&lt;td style=&#8221;vertical-align:top&#8221;&gt;</p>
<p>Then the problem is fixed.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/10/webpage-looks-good-in-ie-but-has-problem-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PayPal start to charge fees on personal account</title>
		<link>http://blog.toplistweb.com/2009/07/paypal-start-to-charge-fees-on-personal-account/</link>
		<comments>http://blog.toplistweb.com/2009/07/paypal-start-to-charge-fees-on-personal-account/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 05:45:01 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[Finance]]></category>
		<category><![CDATA[PayPal]]></category>
		<category><![CDATA[FIREFOX IE 网页设计]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/07/paypal-start-to-charge-fees-on-personal-account/</guid>
		<description><![CDATA[In the past years we can use personal account of PayPal to send and receive money conveniently.
But now PayPal start to charge fees on personal account. This is really a bad news.
 
PayPal fee: 2.4%-3.0%+0.30USD
For more information, see paypal.... ]]></description>
			<content:encoded><![CDATA[<p>In the past years we can use personal account of PayPal to send and receive money conveniently.</p>
<p>But now PayPal start to charge fees on personal account. This is really a bad news.</p>
<p> <span id="more-197"></span>
<p>PayPal fee: 2.4%-3.0%+0.30USD</p>
<p>For more information, see <a href="https://www.paypal.com/row/mrb/pal=DR24S99LFBVNA" target="_blank">paypal</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/07/paypal-start-to-charge-fees-on-personal-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PAYPAL开始对个人帐户收费</title>
		<link>http://blog.toplistweb.com/2009/07/paypal%e5%bc%80%e5%a7%8b%e5%af%b9%e4%b8%aa%e4%ba%ba%e5%b8%90%e6%88%b7%e6%94%b6%e8%b4%b9/</link>
		<comments>http://blog.toplistweb.com/2009/07/paypal%e5%bc%80%e5%a7%8b%e5%af%b9%e4%b8%aa%e4%ba%ba%e5%b8%90%e6%88%b7%e6%94%b6%e8%b4%b9/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 05:28:36 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[PayPal]]></category>
		<category><![CDATA[中文版]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/07/paypal%e5%bc%80%e5%a7%8b%e5%af%b9%e4%b8%aa%e4%ba%ba%e5%b8%90%e6%88%b7%e6%94%b6%e8%b4%b9/</guid>
		<description><![CDATA[以前个人帐户可以免费的使用PAYPAL进行收发款。现在这种情况已经一去不复返了。
 
PAYPAL现在的收费规则，不论是个人帐户还是高级帐户，不论是余额支付还是信用卡支付，只要是购买行为，... ]]></description>
			<content:encoded><![CDATA[<p>以前个人帐户可以免费的使用PAYPAL进行收发款。现在这种情况已经一去不复返了。</p>
<p> <span id="more-196"></span>
<p>PAYPAL现在的收费规则，不论是个人帐户还是高级帐户，不论是余额支付还是信用卡支付，只要是购买行为，都要收取2.4% 到 3.4% + $ 0.30 USD的手续费。</p>
<p>具体收费表如下：</p>
<p>在线购物* <br/>付款 免费 付款 收款 <br/>收款 2.4% 到 3.4% + $ 0.30 USD</p>
<p>个人付款** <br/>使用您的PayPal余额时免费*** <br/>3.4% + $ 0.30 USD <br/>（适用于信用卡付款） <br/>（可由付款人或收款人支付该笔费用</p>
<p>详情见<a href="https://www.paypal.com/row/mrb/pal=DR24S99LFBVNA" target="_blank">PAYPAL网站</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/07/paypal%e5%bc%80%e5%a7%8b%e5%af%b9%e4%b8%aa%e4%ba%ba%e5%b8%90%e6%88%b7%e6%94%b6%e8%b4%b9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FIREFOX中TD用VALIGN不能上对齐的解决办法</title>
		<link>http://blog.toplistweb.com/2009/07/firefox%e4%b8%adtd%e7%94%a8valign%e4%b8%8d%e8%83%bd%e4%b8%8a%e5%af%b9%e9%bd%90%e7%9a%84%e8%a7%a3%e5%86%b3%e5%8a%9e%e6%b3%95/</link>
		<comments>http://blog.toplistweb.com/2009/07/firefox%e4%b8%adtd%e7%94%a8valign%e4%b8%8d%e8%83%bd%e4%b8%8a%e5%af%b9%e9%bd%90%e7%9a%84%e8%a7%a3%e5%86%b3%e5%8a%9e%e6%b3%95/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 04:32:26 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[中文版]]></category>
		<category><![CDATA[FIREFOX IE 网页设计]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/07/firefox%e4%b8%adtd%e7%94%a8valign%e4%b8%8d%e8%83%bd%e4%b8%8a%e5%af%b9%e9%bd%90%e7%9a%84%e8%a7%a3%e5%86%b3%e5%8a%9e%e6%b3%95/</guid>
		<description><![CDATA[ 
在IE浏览器中显示正常的网页，在FIREFOX中文字却掉到下面，不能上对齐。
经检查发现是以下一段代码:
&#60;td valign=&#8221;top&#8221; &#62;
TD的VALIGN设置在FIREFOX中不起作用。
修改为：
&#60;td style=&#822... ]]></description>
			<content:encoded><![CDATA[<p> <span id="more-191"></span>
<p>在IE浏览器中显示正常的网页，在FIREFOX中文字却掉到下面，不能上对齐。</p>
<p>经检查发现是以下一段代码:</p>
<p>&lt;td valign=&#8221;top&#8221; &gt;</p>
<p>TD的VALIGN设置在FIREFOX中不起作用。</p>
<p>修改为：</p>
<p>&lt;td style=&#8221;vertical-align:top;&#8221; valign=&#8221;top&#8221; &gt;</p>
<p>即可在FIREFOX中正常显示。</p>
<p xmlns="" class="zoundry_raven_tags">  <!-- Tag links generated by Zoundry Raven. Do not manually edit. http://www.zoundryraven.com -->  <span class="ztags"><span class="ztagspace">Technorati</span> : <a href="http://www.technorati.com/tag/FIREFOX+IE+%E7%BD%91%E9%A1%B5%E8%AE%BE%E8%AE%A1" class="ztag" rel="tag">FIREFOX IE 网页设计</a></span>  <br/> <span class="ztags"><span class="ztagspace">Del.icio.us</span> : <a href="http://del.icio.us/tag/FIREFOX%20IE%20%E7%BD%91%E9%A1%B5%E8%AE%BE%E8%AE%A1" class="ztag" rel="tag">FIREFOX IE 网页设计</a></span>  <br/> <span class="ztags"><span class="ztagspace">Zooomr</span> : <a href="http://www.zooomr.com/search/photos/?q=FIREFOX%20IE%20%E7%BD%91%E9%A1%B5%E8%AE%BE%E8%AE%A1" class="ztag" rel="tag">FIREFOX IE 网页设计</a></span>  <br/> <span class="ztags"><span class="ztagspace">Flickr</span> : <a href="http://www.flickr.com/photos/tags/FIREFOX%20IE%20%E7%BD%91%E9%A1%B5%E8%AE%BE%E8%AE%A1" class="ztag" rel="tag">FIREFOX IE 网页设计</a></span> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/07/firefox%e4%b8%adtd%e7%94%a8valign%e4%b8%8d%e8%83%bd%e4%b8%8a%e5%af%b9%e9%bd%90%e7%9a%84%e8%a7%a3%e5%86%b3%e5%8a%9e%e6%b3%95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 simple steps to recover your wordpress admin password</title>
		<link>http://blog.toplistweb.com/2009/05/3-simple-steps-to-recover-your-wordpress-admin-password/</link>
		<comments>http://blog.toplistweb.com/2009/05/3-simple-steps-to-recover-your-wordpress-admin-password/#comments</comments>
		<pubDate>Thu, 07 May 2009 02:43:45 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/04/3-simple-steps-to-recover-your-wordpress-admin-password/</guid>
		<description><![CDATA[When you lost your wordpress password, just use following method to recove it.
1.Login you cpanel, use phpmyadmin to edit your database/userdata, set a email to receive the password.
2.Go to ***.com/wp-login.php, click &#8220;lost your password&#8221; an... ]]></description>
			<content:encoded><![CDATA[<p>When you lost your wordpress password, just use following method to recove it.</p>
<p><span id="more-135"></span>1.Login you <strong>cpanel</strong>, use <strong>phpmyadmin</strong> to edit your <strong>database/userdata</strong>, set a <strong>email</strong> to receive the password.</p>
<p>2.Go to ***.com/wp-login.php, click &#8220;lost your password&#8221; and then input your <strong>username</strong> or <strong>email.</strong></p>
<p>3.Check your email, you&#8217;ll get your password then.</p>
<p>You can login your wordpress blog now.</p>
<p id="nav"> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/05/3-simple-steps-to-recover-your-wordpress-admin-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Swift Code of  bank</title>
		<link>http://blog.toplistweb.com/2009/05/swift-code-of-bank/</link>
		<comments>http://blog.toplistweb.com/2009/05/swift-code-of-bank/#comments</comments>
		<pubDate>Wed, 06 May 2009 08:45:50 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[Finance]]></category>
		<category><![CDATA[PayPal]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/04/swift-code-of-bank/</guid>
		<description><![CDATA[When you want to withdraw money from paypal/moneybookers to you bank account, you will need to input the Swift Code of the bank.

What&#8217;s Swift Code?
SWIFT is the Society for Worldwide Interbank Financial Telecommunication.
Over 8,300 banking organi... ]]></description>
			<content:encoded><![CDATA[<p>When you want to withdraw money from paypal/moneybookers to you bank account, you will need to input the Swift Code of the bank.</p>
<p><span id="more-138"></span></p>
<p>What&#8217;s Swift Code?</p>
<p>SWIFT is the Society for Worldwide Interbank Financial Telecommunication.<br />
Over 8,300 banking organisations, securities institutions and corporate customers in more than 208 countries join Swift to exchange financial information securely and reliably.<br />
Every bank has unique swift code.</p>
<p>Where to find Swift Code of the bank?</p>
<p>Online search swift code here:<br />
<a href="http://www.swift.com/bsl/freequery.do">http://www.swift.com/bsl/freequery.do</a></p>
<p>Input following and search:<br />
Institution keyword: BANK NAME<br />
City heading : CITY NAME<br />
Country name: YOUR COUNTRY</p>
<p>You can also call the bank and get the Swift Code.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/05/swift-code-of-bank/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add php code in html files</title>
		<link>http://blog.toplistweb.com/2009/05/how-to-add-php-code-in-html-files/</link>
		<comments>http://blog.toplistweb.com/2009/05/how-to-add-php-code-in-html-files/#comments</comments>
		<pubDate>Tue, 05 May 2009 02:43:00 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/?p=128</guid>
		<description><![CDATA[To insert php code in a html file, just use the following method:

1. in your html file use
html Code:
&#60;script src=&#8221;/script.php&#8221; type=&#8221;text/javascript&#8221;&#62;&#60;/script&#62;
2. then in the php file, make sure you use
php Code:... ]]></description>
			<content:encoded><![CDATA[<p>To insert php code in a html file, just use the following method:<br />
<span id="more-128"></span></p>
<p>1. in your html file use<br />
html Code:<br />
&lt;script src=&#8221;/script.php&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</p>
<p>2. then in the php file, make sure you use<br />
php Code:<br />
&lt;?phpheader(&#8221;content-type: application/x-javascript&#8221;);?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/05/how-to-add-php-code-in-html-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Submit your website to famous Chinese search engines: BAIDU, Google,Yahoo China, Iask(SINA),Sougou etc</title>
		<link>http://blog.toplistweb.com/2009/05/submit-your-website-to-famous-chinese-search-engines-baidu-googleyahoo-china-iasksinasougou-etc/</link>
		<comments>http://blog.toplistweb.com/2009/05/submit-your-website-to-famous-chinese-search-engines-baidu-googleyahoo-china-iasksinasougou-etc/#comments</comments>
		<pubDate>Mon, 04 May 2009 05:30:23 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[English Version]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/05/submit-your-website-to-famous-chinese-search-engines-baidu-googleyahoo-china-iasksinasougou-etc/</guid>
		<description><![CDATA[1.BAIDU-the biggest Chinese search engine
 
Submit url：http://www.baidu.com/search/url_submit.html Time to include：a week to a month
2.Google-the biggest search engine in the world There are 3 methods to submit you website to google. submit url：htt... ]]></description>
			<content:encoded><![CDATA[<p><br/>1.BAIDU-the biggest Chinese search engine</p>
<p> <span id="more-182"></span>
<p>Submit url：<a href="http://www.baidu.com/search/url_submit.html">http://www.baidu.com/search/url_submit.html</a> <br/>Time to include：a week to a month</p>
<p>2.Google-the biggest search engine in the world <br/>There are 3 methods to submit you website to google. <br/>submit url：<a href="http://www.google.com/addurl/?hl=zh-CN">http://www.google.com/addurl/?hl=zh-CN</a></p>
<p>You can also submit your Sitemap or Site Feed directly .</p>
<p>For example, if your Sitemap is <a href="http://www.example.com/sitemap.gz">http://www.example.com/sitemap.gz</a>， <br/>Just in put this url in your internet browser and using an HTTP request to submit: <a href="http://www.google.com/webmasters/sitemaps/ping?sitemap=http://www.example.com/sitemap.gz">http://www.google.com/webmasters/sitemaps/ping?sitemap=http://www.example.com/sitemap.gz</a></p>
<p>If you have a google account, you can log in here:： <br/><a href="http://www.google.com/webmasters/sitemaps">www.google.com/webmasters/sitemaps</a></p>
<p>Time to include： 2 to 3 days</p>
<p>3.Yahoo China-blong to alibaba</p>
<p>Submit url：<a href="http://search.help.cn.yahoo.com/h4_4.html">http://search.help.cn.yahoo.com/h4_4.html</a> <br/>Time to include：a week to a month</p>
<p>4.Yahoo! Search-Yahoo Search in English, You can submit your website url，as well as Site Feed. <br/>Before submission, you need to log in your yahoo account。 <br/>Submit url：<a href="https://siteexplorer.search.yahoo.com/submit/">https://siteexplorer.search.yahoo.com/submit/</a> <br/>Time to include: weeks</p>
<p>5.Microsoft&#8217;s Live Search</p>
<p>Submit url：<a href="http://search.live.com/docs/submit.aspx">http://search.live.com/docs/submit.aspx</a> <br/>Time to include: weeks</p>
<p>6.Sogou-blong to sohu</p>
<p>Submit url：invalid now. It&#8217;s said now sogou get data automaticly from Google. <br/>Time to include: a month</p>
<p>7.Iask-blong to sina</p>
<p>Submit url：<a href="http://iask.com/guest/add_url.php">http://iask.com/guest/add_url.php</a> <br/>Time to include: a month</p>
<p>8.zhongsou</p>
<p>Submit url：<a href="http://ads.zhongsou.com/register/page.jsp">http://ads.zhongsou.com/register/page.jsp</a> <br/>Time to include: a month</p>
<p>9.TOM</p>
<p>Submit url：<a href="http://search.tom.com/tools/weblog/log.php">http://search.tom.com/tools/weblog/log.php</a> <br/>Time to include: N/A</p>
<p>10.AlltheWeb-Yahoo!</p>
<p>Submit url：<a href="http://www.alltheweb.com/help/webmaster/submit_site">http://www.alltheweb.com/help/webmaster/submit_site</a> <br/>Time to include: N/A <br/></p>
<p>Following are some search engine directoris: <br/>1.Dmoz /Google：</p>
<p>Submit url：<a href="http://directory.google.com/Top/World/Chinese_Simplified/dmoz">http://directory.google.com/Top/World/Chinese_Simplified/dmoz</a>， <br/>Time to include: N/A . It&#8217;s dfficult to be included in this directory.</p>
<p>2.Yahoo Chinese</p>
<p>Submit url： <a href="http://cn.dir.yahoo.com/Regional/Countries_and_Regions/Mainland_China/">http://cn.dir.yahoo.com/Regional/Countries_and_Regions/Mainland_China/</a> <br/>Time to include: N/A . Only accept websites if they meet some requirements.</p>
<p><br/>Other site submission related site：</p>
<p>1.Alexa rank</p>
<p>Submit url :<a href="http://www.alexa.com/site/help/webmasters#crawl_site">http://www.alexa.com/site/help/webmasters#crawl_site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/05/submit-your-website-to-famous-chinese-search-engines-baidu-googleyahoo-china-iasksinasougou-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>提交网站到GOOGLE(谷歌)、百度、中英文雅虎、搜狗、微软Live Search、新浪爱问等各个搜索引擎</title>
		<link>http://blog.toplistweb.com/2009/05/%e6%8f%90%e4%ba%a4%e7%bd%91%e7%ab%99%e5%88%b0google%e8%b0%b7%e6%ad%8c%e3%80%81%e7%99%be%e5%ba%a6%e3%80%81%e4%b8%ad%e8%8b%b1%e6%96%87%e9%9b%85%e8%99%8e%e3%80%81%e6%90%9c%e7%8b%97%e3%80%81%e5%be%ae/</link>
		<comments>http://blog.toplistweb.com/2009/05/%e6%8f%90%e4%ba%a4%e7%bd%91%e7%ab%99%e5%88%b0google%e8%b0%b7%e6%ad%8c%e3%80%81%e7%99%be%e5%ba%a6%e3%80%81%e4%b8%ad%e8%8b%b1%e6%96%87%e9%9b%85%e8%99%8e%e3%80%81%e6%90%9c%e7%8b%97%e3%80%81%e5%be%ae/#comments</comments>
		<pubDate>Mon, 04 May 2009 04:47:27 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[中文版]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/05/179/</guid>
		<description><![CDATA[1.Google(谷歌)-世界最大的搜索引擎 三种方法提交Google收录你的网站：
 
提交入口：http://www.google.com/addurl/?hl=zh-CN
也可以直接提交你的网站地图或Site Feed。 例如你的网站地图是http://www.example.com/si... ]]></description>
			<content:encoded><![CDATA[<p>1.Google(谷歌)-世界最大的搜索引擎 <br/>三种方法提交Google收录你的网站：</p>
<p> <span id="more-179"></span>
<p><br/>提交入口：<a href="http://www.google.com/addurl/?hl=zh-CN">http://www.google.com/addurl/?hl=zh-CN</a></p>
<p>也可以直接提交你的网站地图或Site Feed。 <br/>例如你的网站地图是<a href="http://www.example.com/sitemap.gz">http://www.example.com/sitemap.gz</a>， <br/>直接在浏览器窗口输入：<a href="http://www.google.com/webmasters/sitemaps/ping?sitemap=http://www.example.com/sitemap.gz">http://www.google.com/webmasters/sitemaps/ping?sitemap=http://www.example.com/sitemap.gz</a></p>
<p>如果你有google帐号，也可在此进行管理： <br/><a href="http://www.google.com/webmasters/sitemaps">www.google.com/webmasters/sitemaps</a></p>
<p>收录时间：很快。通常2到3天就收录了.</p>
<p><br/>2.百度(BAIDU)-中文领域最大最权威的搜索引擎</p>
<p>提交入口：<a href="http://www.baidu.com/search/url_submit.html">http://www.baidu.com/search/url_submit.html</a> <br/>收录时间：1个月内</p>
<p>3.雅虎中国-现已归阿里巴巴旗下</p>
<p>提交入口：<a href="http://search.help.cn.yahoo.com/h4_4.html">http://search.help.cn.yahoo.com/h4_4.html</a> <br/>收录时间：数周至数月</p>
<p>4.Yahoo! Search-英文Yahoo搜索,可以提交website url，也可提交Site Feed. <br/>需要登陆你的Yahoo帐号。 <br/>提交入口：<a href="https://siteexplorer.search.yahoo.com/submit/">https://siteexplorer.search.yahoo.com/submit/</a> <br/>收录时间：数周</p>
<p>5.微软Live Search-前一阵子好象关闭了高级搜索功能，现在又恢复了。据说与国内114搜索同数据库。</p>
<p>提交入口：<a href="http://search.live.com/docs/submit.aspx">http://search.live.com/docs/submit.aspx</a> <br/>收录时间：数周</p>
<p>6.搜狗－搜狐旗下搜索引擎</p>
<p>提交入口：已停用，说是Google搜录之后自动收录。 <br/>收录时间：一个月内</p>
<p>7.爱问搜索－新浪旗下搜索引擎</p>
<p>提交入口：<a href="http://iask.com/guest/add_url.php">http://iask.com/guest/add_url.php</a> <br/>收录时间：一个月内</p>
<p>8.中搜－中国搜索？</p>
<p>提交入口：<a href="http://ads.zhongsou.com/register/page.jsp">http://ads.zhongsou.com/register/page.jsp</a> <br/>收录时间：一个月内</p>
<p>9.TOM搜索</p>
<p>提交入口：<a href="http://search.tom.com/tools/weblog/log.php">http://search.tom.com/tools/weblog/log.php</a> <br/>收录时间：不定</p>
<p>10.AlltheWeb-Yahoo!旗下搜索引擎,免费提交程序同提交英文Yahoo搜索方法</p>
<p>提交入口：<a href="http://www.alltheweb.com/help/webmaster/submit_site">http://www.alltheweb.com/help/webmaster/submit_site</a> <br/>收录时间：不定 <br/></p>
<p>以下是人工审核的网页目录提交 <br/>1.Google网页目录：</p>
<p>提交入口：<a href="http://directory.google.com/Top/World/Chinese_Simplified/dmoz">http://directory.google.com/Top/World/Chinese_Simplified/dmoz</a>， <br/>收录时间：不定。Dmoz收录要求高,想要收录较难。</p>
<p>2.雅虎分类目录 <br/>提交入口： <a href="http://cn.dir.yahoo.com/Regional/Countries_and_Regions/Mainland_China/">http://cn.dir.yahoo.com/Regional/Countries_and_Regions/Mainland_China/</a> <br/>收录时间：不定。只收录达到一定标准的网站。</p>
<p><br/>其他：</p>
<p>1.Alexa排名提交 <a href="http://www.alexa.com/site/help/webmasters#crawl_site">http://www.alexa.com/site/help/webmasters#crawl_site</a></p>
<p>2.天网搜索 <br/>收录入口：已失效</p>
<p>3.千度：http://join.qiandu.com/ 其一先决条件为要先加入它的连接。 <br/>成功收录时间不定 注：只有在你网站上连接此站才能保证成功收录。</p>
<p>4.一搜：http://www.yisou.com -yahoo.com.cn旗下</p>
<p>5.网址之家：http://post.baidu.com/f?kw=hao123</p>
<p>6.百度网址站：http://post.baidu.com/f?kw=百度site <br/></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/05/%e6%8f%90%e4%ba%a4%e7%bd%91%e7%ab%99%e5%88%b0google%e8%b0%b7%e6%ad%8c%e3%80%81%e7%99%be%e5%ba%a6%e3%80%81%e4%b8%ad%e8%8b%b1%e6%96%87%e9%9b%85%e8%99%8e%e3%80%81%e6%90%9c%e7%8b%97%e3%80%81%e5%be%ae/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
