<?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- 电子商务 &#187; Web Design</title>
	<atom:link href="http://blog.toplistweb.com/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.toplistweb.com</link>
	<description></description>
	<lastBuildDate>Sun, 20 Jun 2010 09:28:02 +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>Webpage looks good in IE, but has problem in FireFox</title>
		<link>http://blog.toplistweb.com/2009/12/webpage-looks-good-in-ie-but-has-problem-in-firefox/</link>
		<comments>http://blog.toplistweb.com/2009/12/webpage-looks-good-in-ie-but-has-problem-in-firefox/#comments</comments>
		<pubDate>Mon, 07 Dec 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/12/webpage-looks-good-in-ie-but-has-problem-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>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>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>怎样加密你的网页代码</title>
		<link>http://blog.toplistweb.com/2009/05/%e6%80%8e%e6%a0%b7%e5%8a%a0%e5%af%86%e4%bd%a0%e7%9a%84%e7%bd%91%e9%a1%b5%e4%bb%a3%e7%a0%81/</link>
		<comments>http://blog.toplistweb.com/2009/05/%e6%80%8e%e6%a0%b7%e5%8a%a0%e5%af%86%e4%bd%a0%e7%9a%84%e7%bd%91%e9%a1%b5%e4%bb%a3%e7%a0%81/#comments</comments>
		<pubDate>Fri, 01 May 2009 07:34:21 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[中文版]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/05/%e6%80%8e%e6%a0%b7%e5%8a%a0%e5%af%86%e4%bd%a0%e7%9a%84%e7%bd%91%e9%a1%b5%e4%bb%a3%e7%a0%81/</guid>
		<description><![CDATA[当你设计好一个网页或模版提供出售或免费分享时， 你可能需要保持你的版权信息和链接不被未经许可移除。网页代码加密能为此提供一个很好的解决办法。
 
虽然网页加密对于了解某个加密... ]]></description>
			<content:encoded><![CDATA[<p>当你设计好一个网页或模版提供出售或免费分享时， 你可能需要保持你的版权信息和链接不被未经许可移除。网页代码加密能为此提供一个很好的解决办法。</p>
<p> <span id="more-177"></span>
<p>虽然网页加密对于了解某个加密方法的人来说，很容易解开。但是争对于大部分不懂加密的用户，这种方法还是有效的。所以你还是可以对大部分用户，用这种方法保护你的版权。</p>
<p>步骤1：完成你需要加密的那部分网页代码。 <br/>步骤2：选取你要的加密方法。比如<a href="http://www.motobit.com/util/base64-decoder-encoder.asp" target="_blank">base64 encoder at Motobit</a>。拷贝你要加密的代码到加密器中，得到加密后的结果。 <br/>例如源代码： <br/>&lt;table cellpadding=&#8221;6&#8243; cellspacing=&#8221;0&#8243; border=&#8221;0&#8243; width=&#8221;100%&#8221; class=&#8221;page&#8221; align=&#8221;center&#8221;&gt; <br/>加密后的结果： <br/>PHRhYmxlIGNlbGxwYWRkaW5nPSI2IiBjZWxsc3BhY2luZz0iMCIgYm9yZGVyPSIwIiB3aWR0aD0i <br/>MTAwJSIgY2xhc3M9InBhZ2UiIGFsaWduPSJjZW50ZXIiPg0K</p>
<p>步骤3：现在你可拷贝加密后的结果回来， 用以下形式代替原网页中的代码： <br/>&lt;?php $str = &#8216;xxxx&#8217; ;echo base64_decode($str);?&gt;</p>
<p>网页加密完成。现在你再看你的网页，在浏览器中和平常一样显示。但源代码部分已被加密。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/05/%e6%80%8e%e6%a0%b7%e5%8a%a0%e5%af%86%e4%bd%a0%e7%9a%84%e7%bd%91%e9%a1%b5%e4%bb%a3%e7%a0%81/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>怎样防止图片被盗链</title>
		<link>http://blog.toplistweb.com/2009/05/%e6%80%8e%e6%a0%b7%e9%98%b2%e6%ad%a2%e5%9b%be%e7%89%87%e8%a2%ab%e7%9b%97%e9%93%be/</link>
		<comments>http://blog.toplistweb.com/2009/05/%e6%80%8e%e6%a0%b7%e9%98%b2%e6%ad%a2%e5%9b%be%e7%89%87%e8%a2%ab%e7%9b%97%e9%93%be/#comments</comments>
		<pubDate>Fri, 01 May 2009 06:39:21 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[中文版]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/05/%e6%80%8e%e6%a0%b7%e9%98%b2%e6%ad%a2%e5%9b%be%e7%89%87%e8%a2%ab%e7%9b%97%e9%93%be/</guid>
		<description><![CDATA[图片盗链往往占用你的很大部分网站流量，而不会带给你网站实际的访问者。以下方法可有效防止图片被盗链。
 
1、在Cpanel里设置HotLinkProtection 设置你允许直接链的站点(URLs to allow access)，可加... ]]></description>
			<content:encoded><![CDATA[<p>图片盗链往往占用你的很大部分网站流量，而不会带给你网站实际的访问者。以下方法可有效防止图片被盗链。</p>
<p> <span id="more-149"></span>
<p>1、在Cpanel里设置HotLinkProtection <br/>设置你允许直接链的站点(URLs to allow access)，可加入你自己所有的站点。除此之外的其他网站盗链过来的请求都会被拒绝。 <br/>设置防盗链的文件类型(Block direct access for these extensions) ，比如jpg,jpeg,gif,png,bmp,png,exe,rar,zip <br/>设置重定向的网址(Redirect request to this URL)，这项可设可不设。设定的话，别人盗链时即显示的是这个地址。 <br/>点击Submit启用即可。</p>
<p>2、使用Url Rewrite功能, 在httpd.ini中加入Rewrite语句检查REFER，如果REFER的信息来自其他网站则禁止访问所需要的资源。 <br/>RewriteCond Host: (.+)</p>
<p>RewriteCond Referer: (?!http://\1.*).*</p>
<p>RewriteRule .*\.(?:gif|jpg|jpeg|png|bmp|exe|rar|zip) /block.gif [I,O]</p>
<p>这时重启服务器，防盗链即开始起作用，其他网站过来的请求都会被视为盗链而拒绝。 <br/>3、如果WEB服务器用的是APACHE的话，那么可以很方便地使用APACHE自带的Url Rewrite功能。如果WEB服务器用的是IIS的话，ISS本身不支持UrlRewrite。但是可以通过安装第三方服务器扩展让IIS支持，比如ISAPI_Rewrite（下载地址在： http://www.helicontech.com/download/）。 <br/>ISAPI Rewrite的有个免费的LITE版本，其它都是trial版本。ISAPI Rewrite Lite的版本功能不支持虚拟站点配置，元数据监测和自动缓存清理。 不过基本的UrlRewrite功能都支持。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/05/%e6%80%8e%e6%a0%b7%e9%98%b2%e6%ad%a2%e5%9b%be%e7%89%87%e8%a2%ab%e7%9b%97%e9%93%be/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>怎样防止别人盗用你的网页和图片</title>
		<link>http://blog.toplistweb.com/2009/05/%e6%80%8e%e6%a0%b7%e9%98%b2%e6%ad%a2%e5%88%ab%e4%ba%ba%e7%9b%97%e7%94%a8%e4%bd%a0%e7%9a%84%e7%bd%91%e9%a1%b5%e5%92%8c%e5%9b%be%e7%89%87/</link>
		<comments>http://blog.toplistweb.com/2009/05/%e6%80%8e%e6%a0%b7%e9%98%b2%e6%ad%a2%e5%88%ab%e4%ba%ba%e7%9b%97%e7%94%a8%e4%bd%a0%e7%9a%84%e7%bd%91%e9%a1%b5%e5%92%8c%e5%9b%be%e7%89%87/#comments</comments>
		<pubDate>Fri, 01 May 2009 05:48:27 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[中文版]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/05/%e6%80%8e%e6%a0%b7%e9%98%b2%e6%ad%a2%e5%88%ab%e4%ba%ba%e7%9b%97%e7%94%a8%e4%bd%a0%e7%9a%84%e7%bd%91%e9%a1%b5%e5%92%8c%e5%9b%be%e7%89%87/</guid>
		<description><![CDATA[怎么样防止你的网站文章和图片被非法复制，保存，拷贝？ 用以下方法，可以一定程度上对窃取者造成麻烦，防止别人轻易不劳而获抄袭你的网页内容。
 
网页防盗用的方法之一:禁止右键，禁... ]]></description>
			<content:encoded><![CDATA[<p>怎么样防止你的网站文章和图片被非法复制，保存，拷贝？ 用以下方法，可以一定程度上对窃取者造成麻烦，防止别人轻易不劳而获抄袭你的网页内容。</p>
<p> <span id="more-144"></span>
<p><span style="COLOR: #ff0000"><span style="COLOR: #ff0000"><span style="COLOR: #ff0000">网页防盗用的方法之一</span>:禁止右键，禁止任何被选中拷贝和粘贴。</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>说明 <br/>oncontextmenu=&#8217;return false&#8217; 禁止鼠标右键 <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;禁止选取 <br/>onbeforecopy=&#8217;return false&#8217; 禁止拷贝</p>
<p><br/><span style="COLOR: #ff0000">网页防盗用的方法之二是:不禁止右键,只是禁止右键图像另存为。</span></p>
<p>在HEAD区加 <br/>&lt;meta http-equiv=&#8221;imagetoolbar&#8221; content=&#8221;no&#8221;&gt;</p>
<p>在BODY区加</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">网页防盗用的方法之三：只在网页上禁止拷贝和粘贴功能。</span></p>
<p>&lt;body self.event.returnValue=false onselectstart=&#8221;return false&#8221;&gt;</p>
<p><span style="COLOR: #ff0000">网页防盗用的方法之四：只在某幅特定图片上禁止使用图片工具/右键功能。</span></p>
<p>禁止使用图片工具：&lt;img src=&#8221;EXAMPLE.jpg&#8221; width=&#8221;300&#8243; height=&#8221;300&#8243; galleryimg=&#8221;no&#8221;&gt; <br/>禁止右键功能：&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">网页防盗用的方法之五：禁止浏览器缓存。</span></p>
<p>先在HEAD区加入以下代码 <br/>&lt;!&#8211; MICROSOFT/NETSCAPE/MOZILLA BROWSERS 都需加入以下标签G &#8211;&gt; <br/>&lt;meta http-equiv=&#8221;Pragma&#8221; content=&#8221;no-cache&#8221;&gt;</p>
<p>&lt;!&#8211; MICROSOFT BROWSERS 还需加入以下标签 &#8211;&gt; <br/>&lt;meta http-equiv=&#8221;Expires&#8221; content=&#8221;-1&#8243;&gt;</p>
<p>再在&lt;/body&gt;和&lt;/html&gt;加入以下代码 <br/>&lt;/body&gt; <br/>&lt;!&#8211; 加入额外的HEAD代码 &#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">网页防盗用的方法之六：禁止某类浏览器访问你的网页。</span></p>
<p>例如禁止Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Opera 7.54 <br/>可在HEAD区的JAVA部分加入以下代码： <br/>if(navigator.userAgent.match(/Opera/ig)) { <br/>location.replace(&#8221;opera-not-supported.html&#8221;); <br/>}</p>
<p><span style="COLOR: #ff0000">网页防盗用的方法之七：永远都会带着框架来隐藏你网页的真实地址。</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">网页防盗用的方法之八：防止被人frame嵌入别的网页中。</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">网页防盗用的方法之九：网页加密及图像加水印。</span></p>
<p>前面几种方法都只能对付不太精通电脑的人。更有效的保护你的网页的办法还是对你的网页加密及图像加水印。 <br/></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/05/%e6%80%8e%e6%a0%b7%e9%98%b2%e6%ad%a2%e5%88%ab%e4%ba%ba%e7%9b%97%e7%94%a8%e4%bd%a0%e7%9a%84%e7%bd%91%e9%a1%b5%e5%92%8c%e5%9b%be%e7%89%87/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>几款好用的离线写博客软件</title>
		<link>http://blog.toplistweb.com/2009/04/%e5%87%a0%e6%ac%be%e5%a5%bd%e7%94%a8%e7%9a%84%e7%a6%bb%e7%ba%bf%e5%86%99%e5%8d%9a%e5%ae%a2%e8%bd%af%e4%bb%b6/</link>
		<comments>http://blog.toplistweb.com/2009/04/%e5%87%a0%e6%ac%be%e5%a5%bd%e7%94%a8%e7%9a%84%e7%a6%bb%e7%ba%bf%e5%86%99%e5%8d%9a%e5%ae%a2%e8%bd%af%e4%bb%b6/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 10:21:55 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[中文版]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/04/%e5%87%a0%e6%ac%be%e5%a5%bd%e7%94%a8%e7%9a%84%e7%a6%bb%e7%ba%bf%e5%86%99%e5%8d%9a%e5%ae%a2%e8%bd%af%e4%bb%b6/</guid>
		<description><![CDATA[大家都知道博客软件如WordPress等自带的博客编辑器功能很少，且发布速度很慢。通过离线博客编辑软件可以很轻松快捷的随时写博，批量发布。
 
在使用离线写博客工具之前，先要对你的博客... ]]></description>
			<content:encoded><![CDATA[<p>大家都知道博客软件如WordPress等自带的博客编辑器功能很少，且发布速度很慢。通过离线博客编辑软件可以很轻松快捷的随时写博，批量发布。</p>
<p> <span id="more-141"></span>
<p>在使用离线写博客工具之前，先要对你的博客设置远程发布许可。例如WordPress，要到wp-admin/options-writing.php中，选取&#8221;Remote Publishing：XML-RPC Enable the WordPress, Movable Type, MetaWeblog and Blogger XML-RPC publishing protocols&#8221;，然后点击Save Change保存设置。 <br/><br/>下面推荐一些好用的离线写博客软件: <br/>1.<a href="http://get.live.com/en-us/betas/writer_betas" target="_blank">Windows Live Writer</a> <br/>MicroSoft发布的很好用的一款小工具。 <br/>2.<a href="http://www.zoundry.com/software.html" target="_blank">The Zoundry Blog Writer</a> <br/>The Zoundry Blog Writer™ 是一款功能完备，又简单易用的离线写博客软件。并且支持中文界面和PROXY。无论插入图片、选分类、加标签都十分方便。我这篇博客就是用Zoundry发布的。 <br/>3.<a href="http://www.blogdesk.org/en/index.htm" target="_blank">BlogDesk <br/></a> 适用于WordPress,Drupal等的一款免费离线编辑器。 <br/>4.<a href="http://www.scribefire.com/" target="_blank">ScribeFire</a> <br/>如果你经常使用FIREFOX浏览器的话，不妨试一试安装ScribeFire。它和FIREFOX结合得挺好的。</p>
<p>以上这些是国外一些方便易用的离线写博客软件。支持发布到WordPress,blogger,blogroll,dotclear等多类博客。但是不一定适用于国内的BAIDU等博客。</p>
<p><br/>下面是两款国内的离线博客编辑工具：</p>
<p>1、<a href="http://www.178blog.com/" target="_blank">博客精灵</a> <br/>2、<a href="http://www.newhua.com/soft/78164.htm">超级写手</a></p>
<p>这两款离线写博客工具同时都支持群发国内十二大知名博客，百度,新浪，和讯，搜狐,博客网, blogcn,blogbus,猫扑,tom,天涯,网易,myspace 。 <br/></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/04/%e5%87%a0%e6%ac%be%e5%a5%bd%e7%94%a8%e7%9a%84%e7%a6%bb%e7%ba%bf%e5%86%99%e5%8d%9a%e5%ae%a2%e8%bd%af%e4%bb%b6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>找回你的WordPress管理密码</title>
		<link>http://blog.toplistweb.com/2009/04/%e6%89%be%e5%9b%9e%e4%bd%a0%e7%9a%84wordpress%e7%ae%a1%e7%90%86%e5%af%86%e7%a0%81/</link>
		<comments>http://blog.toplistweb.com/2009/04/%e6%89%be%e5%9b%9e%e4%bd%a0%e7%9a%84wordpress%e7%ae%a1%e7%90%86%e5%af%86%e7%a0%81/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 07:44:24 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[中文版]]></category>

		<guid isPermaLink="false">http://blog.toplistweb.com/2009/04/%e6%89%be%e5%9b%9e%e4%bd%a0%e7%9a%84wordpress%e7%ae%a1%e7%90%86%e5%af%86%e7%a0%81/</guid>
		<description><![CDATA[如果WordPress管理员密码忘记/丢失了，该怎样找回呢？
用以下简单的方法即可：
 
步骤1、登陆 cpanel，使用phpmyadmin修改你数据库中的用户数据database/userdata，设定接收密码的邮箱email 。
步骤2、... ]]></description>
			<content:encoded><![CDATA[<p>如果WordPress管理员密码忘记/丢失了，该怎样找回呢？</p>
<p>用以下简单的方法即可：</p>
<p> <span id="more-136"></span>
<p>步骤1、登陆 <strong>cpanel</strong>，使用<strong>phpmyadmin</strong>修改你数据库中的用户数据<strong>database/userdata</strong>，设定接收密码的邮箱<strong>email</strong> 。</p>
<p>步骤2、转入你的博客管理 ***.com/wp-login.php，点击&#8221;lost your password&#8221;，输入你的用户名或EMAIL，点击找回密码。</p>
<p>步骤3、登陆你的邮箱， 你已经收到包含密码信息的邮件。</p>
<p>现在你可以用这个密码登陆WordPress博客管理了。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.toplistweb.com/2009/04/%e6%89%be%e5%9b%9e%e4%bd%a0%e7%9a%84wordpress%e7%ae%a1%e7%90%86%e5%af%86%e7%a0%81/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
