<?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>IM.ASHI &#187; 知识传递</title>
	<atom:link href="http://ashi.im/knowledge/feed" rel="self" type="application/rss+xml" />
	<link>http://ashi.im</link>
	<description>有的时候做自己,有的时候却不得不放弃自己。</description>
	<lastBuildDate>Mon, 24 May 2010 00:55:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>浏览器可显示原图片的JS</title>
		<link>http://ashi.im/article/original_size_image-js.html</link>
		<comments>http://ashi.im/article/original_size_image-js.html#comments</comments>
		<pubDate>Thu, 18 Mar 2010 23:47:18 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[代码如诗]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[代码]]></category>

		<guid isPermaLink="false">http://ashi.im/article/original_size_image-js.html</guid>
		<description><![CDATA[&#160;&#160;&#160;&#160;&#160;&#160;&#160; 在逛Opera论坛的时候看到的这个JS让我感到喜悦，当图片被缩放时，或者链接着另一张图片，用此JS可以将原图显示出来，并且你还可以设置你要显示的效果，是点击了才显示还是当鼠标经过时显示。
<a class="thickbox" href="http://ashi.im/wp-content/uploads/2010/03/2010-02-27_153723.jpg" target="_blank"><img align="middle" alt="" border="0" class="aligncenter size-medium wp-image-1220" height="300" src="http://ashi.im/wp-content/uploads/2010/03/2010-02-27_153723-268x300.jpg" title="可显示原图片的JS" width="268" /></a>
其实有点像图片box的效果，浏览有图片的网站效果很好的。这个JS目前可以用于Firefox和Opera，Chrome我不知道......<p class='alignright'><a href='http://ashi.im/article/original_size_image-js.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 在逛Opera论坛的时候看到的这个JS让我感到喜悦，当图片被缩放时，或者链接着另一张图片，用此JS可以将原图显示出来，并且你还可以设置你要显示的效果，是点击了才显示还是当鼠标经过时显示。</p>
<p style="text-align: center;"><a class="thickbox" href="http://ashi.im/wp-content/uploads/2010/03/2010-02-27_153723.jpg" target="_blank"><img align="middle" alt="" border="0" class="aligncenter size-medium wp-image-1220" height="300" src="http://ashi.im/wp-content/uploads/2010/03/2010-02-27_153723-268x300.jpg" title="可显示原图片的JS" width="268" /></a></p>
<p>其实有点像图片box的效果，浏览有图片的网站效果很好的。这个JS目前可以用于Firefox和Opera，Chrome我不知道怎么用，至于IE等浏览器如果你懂得用proxomitrox的话也是可以实现的。<br />
	下面是部分代码：</p>
<blockquote>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;设置&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-*/<br />
		&nbsp;&nbsp;&nbsp; //这里根据你的Opera页面缩放情况填入相关数值。如默认100%则填100。如果不使用Opera则不必理会这一项。<br />
		&nbsp;&nbsp;&nbsp; //注：如果你的页面缩放不是100%，不调整这项值会造成居中错误的问题。<br />
		&nbsp;&nbsp;&nbsp; var OP_PAGE_PERCENTAGE = 100;</p>
<p>		&nbsp;&nbsp;&nbsp; // 0&mdash;&mdash;图片居中显示，如果过大，则缩放<br />
		&nbsp;&nbsp;&nbsp; // 1&mdash;&mdash;图片出现位置即查看按钮的位置，不缩放<br />
		&nbsp;&nbsp;&nbsp; // 2&mdash;&mdash;直接在鼠标旁边显示图片，不缩放<br />
		&nbsp;&nbsp;&nbsp; var VIEW_STYLE = 2;</p>
<p>		&nbsp;&nbsp;&nbsp; // true&mdash;&mdash;只在图片被缩小过（用户限定规则的除外），或者图片链接着另一张图片时显示查看按钮<br />
		&nbsp;&nbsp;&nbsp; // false&mdash;&mdash;任何图片（用户限定规则的除外）都显示查看按钮，如果图片链接着另一张图片，则显示被链接的图片，否则显示当前图片<br />
		&nbsp;&nbsp;&nbsp; var VIEW_FILTER = true;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //长或宽小于其自身最小值，则不显示查看按钮<br />
		&nbsp;&nbsp;&nbsp; var MIN_WIDTH = 40;<br />
		&nbsp;&nbsp;&nbsp; var MIN_HEIGHT = 40;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //图片并未链接图片，且图片仅仅被缩小x%，或者x像素的，则不显示查看按钮<br />
		&nbsp;&nbsp;&nbsp; var DEC_PERCENTAGE = 2;<br />
		&nbsp;&nbsp;&nbsp; var DEC_PIX = 10;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //显示查看按钮的时延，单位为毫秒<br />
		&nbsp;&nbsp;&nbsp; var VIEW_BUTTON_DELAY = 100;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //查看按钮出现的位置<br />
		&nbsp;&nbsp;&nbsp; //0&mdash;&mdash;左上<br />
		&nbsp;&nbsp;&nbsp; //1&mdash;&mdash;右上<br />
		&nbsp;&nbsp;&nbsp; var VIEW_BUTTON_POS = 0;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //显示预览图工具栏<br />
		&nbsp;&nbsp;&nbsp; //true&mdash;&mdash;显示；false&mdash;&mdash;不显示<br />
		&nbsp;&nbsp;&nbsp; var SHOW_TOOLS_BAR = false;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //当VIEW_STYLE = 2时（鼠标悬停即显示）时，显示预览图的时延<br />
		&nbsp;&nbsp;&nbsp; var VIEW_PREVIEW_DELAY = 100;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //缩放方式<br />
		&nbsp;&nbsp;&nbsp; //0&mdash;&mdash;居中缩放<br />
		&nbsp;&nbsp;&nbsp; //1&mdash;&mdash;左上角对齐<br />
		&nbsp;&nbsp;&nbsp; //2&mdash;&mdash;按鼠标位置缩放<br />
		&nbsp;&nbsp;&nbsp; var RESIZE_STYLE = 2;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //显示原始尺寸方式<br />
		&nbsp;&nbsp;&nbsp; //0&mdash;&mdash;左上角对齐<br />
		&nbsp;&nbsp;&nbsp; //1&mdash;&mdash;按鼠标位置显示<br />
		&nbsp;&nbsp;&nbsp; var ORIGINAL_STYLE = 1;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //缩放速度，正数，值越大越快<br />
		&nbsp;&nbsp;&nbsp; var RESIZE_SPEED = 5;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //查看方式<br />
		&nbsp;&nbsp;&nbsp; //true&mdash;&mdash;当图片无链接，或链接的是一张图片，点击图片即可显示预览图，有可能与原有事件冲突。<br />
		&nbsp;&nbsp;&nbsp; //false&mdash;&mdash;必须点击查看按钮才显示预览图。<br />
		&nbsp;&nbsp;&nbsp; var CLICK_DIRECT_VIEW = false;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //鼠标单击预览图的事件<br />
		&nbsp;&nbsp;&nbsp; //0&mdash;&mdash;尺寸切换（屏幕适配或原始尺寸）<br />
		&nbsp;&nbsp;&nbsp; //1&mdash;&mdash;关闭预览图<br />
		&nbsp;&nbsp;&nbsp; //其他&mdash;&mdash;无动作<br />
		&nbsp;&nbsp;&nbsp; var PREVIEW_CLICK_HDLR = 0;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //当PREVIEW_CLICK_HDLR = 1时（关闭预览图），等待关闭的时延，用于兼容双击事件<br />
		&nbsp;&nbsp;&nbsp; var PREVIEW_CLICK_CLOSE_DELAY = 300;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //鼠标双击预览图的事件<br />
		&nbsp;&nbsp;&nbsp; //0&mdash;&mdash;关闭预览图<br />
		&nbsp;&nbsp;&nbsp; //1&mdash;&mdash;尺寸切换（屏幕适配或原始尺寸）<br />
		&nbsp;&nbsp;&nbsp; //其他&mdash;&mdash;无动作<br />
		&nbsp;&nbsp;&nbsp; var PREVIEW_DBLCLICK_HDLR = 0;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //点击空白处关闭预览图，有可能会与网页冲突<br />
		&nbsp;&nbsp;&nbsp; //true&mdash;&mdash;开启<br />
		&nbsp;&nbsp;&nbsp; //false&mdash;&mdash;关闭<br />
		&nbsp;&nbsp;&nbsp; var CLICK_BLANK_TO_CLOSE = false;<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //说明：对于一些网站，不使用绝对路径的，可以添加替换规则<br />
		&nbsp;&nbsp;&nbsp; //注：规则暂定，以后可能会变动。<br />
		&nbsp;&nbsp;&nbsp; //true&mdash;&mdash;开启规则检查<br />
		&nbsp;&nbsp;&nbsp; //false&mdash;&mdash;关闭规则检查<br />
		&nbsp;&nbsp;&nbsp; var SITE_IMG_INFO_FLAG = true;<br />
		&nbsp;&nbsp;&nbsp; //可按下面格式进行添加，只有在附件检查开启时才起作用<br />
		&nbsp;&nbsp;&nbsp; //第一个值为图片匹配的正则表达式，第二个值为替换的内容，如何使用正则和替换，请自行搜索，或到论坛发帖求助<br />
		&nbsp;&nbsp;&nbsp; //以下设置可做参考<br />
		&nbsp;&nbsp;&nbsp; var SITE_IMG_INFO = [<br />
		&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; [/http\:\/\/bbs\.themex\.net\/attachment\.php\?attachmentid\=(\w+).*\&amp;thumb\=1\&amp;d\=(\w+)/, &#39;http://bbs.themex.net/attachment.php?attachmentid=$1&amp;d=$2&#39;],<br />
		&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; [/http\:\/\/(\w+)\.douban\.com\/view\/photo\/thumb\/public\/(\w+)/, &#39;http://$1.douban.com/view/photo/photo/public/$2&#39;],<br />
		&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; [/http\:\/\/126\.fm\/(\w+)s$/, &#39;http://126.fm/$1&#39;],<br />
		&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; [/http:\/\/bbs\.operachina\.com\/download\/file\.php\?id\=(\w+)&amp;t=1/, &#39;http://bbs.operachina.com/download/file.php?id=$1&amp;mode=view&#39;],<br />
		&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; [/http\:\/\/static\.minitokyo\.net\/thumbs\/(\d+)\/(\d+)\/(\d+)\.(\w+)\?(\w+)/, &#39;http://static.minitokyo.net/view/$1/$2/$3.$4?$5&#39;],<br />
		&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; [/http\:\/\/farm(\d)\.static\.flickr\.com\/(\d+)\/(.+)_m\.(\w+)/, &#39;http://farm$1.static.flickr.com/$2/$3.$4&#39;],<br />
		&nbsp;&nbsp;&nbsp; ];<br />
		&nbsp;&nbsp;&nbsp; <br />
		&nbsp;&nbsp;&nbsp; //说明：特例网站设置<br />
		&nbsp;&nbsp;&nbsp; //第一个值为站点匹配的正则表达式，第二个值为特例设置<br />
		&nbsp;&nbsp;&nbsp; //以下设置可做参考<br />
		&nbsp;&nbsp;&nbsp; var SITE_STYLE_INFO = [<br />
		&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; [/http\:\/\/www\.douban\.com\/online\/\d+\/album\/\d+\//, &#39;CLICK_DIRECT_VIEW = false; VIEW_STYLE = 2; VIEW_PREVIEW_DELAY = 250;&#39;],<br />
		&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; [/http\:\/\/t\.163\.com\//, &#39;CLICK_DIRECT_VIEW = false; VIEW_STYLE = 2; VIEW_PREVIEW_DELAY = 100;&#39;],<br />
		&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; [/http\:\/\/www\.flickr\.com\/photos\//, &#39;CLICK_DIRECT_VIEW = false; VIEW_STYLE = 2; VIEW_PREVIEW_DELAY = 100;&#39;],<br />
		&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; [/http\:\/\/tieba\.baidu\.com\/.+\/tupian/, &#39;MIN_WIDTH = 200; MIN_HEIGHT = 200;&#39;],<br />
		&nbsp;&nbsp;&nbsp; ];<br />
		/*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;设置结束&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;*/</p>
</blockquote>
<p>感谢Opera论坛ID为<strong>yansyrs</strong>贡献的这个<a href="http://ashiim.googlecode.com/files/original_size_image.js" target="_blank">original_size_image.js</a>代码和给我的帮助，当然你也可以在http://ashiim.googlecode.com上下载这个JS文件。</p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/jsjumps.html" title="js实现页面跳转的几种方式">js实现页面跳转的几种方式</a> (0)<br /><small>通过js或者html或者php等动态程序都可以方便的实现跳转，这里搜集了几种页面跳转的方式
js方式...</small></li><li><a href="http://ashi.im/article/wordpress-thumb.html" title="给你的wordpress文章添加缩略图">给你的wordpress文章添加缩略图</a> (31)<br /><small>&nbsp;
&nbsp;
创建日志缩略图我想很多wper都有用过这个方法，很多主题都自带这个功...</small></li><li><a href="http://ashi.im/article/touxiang-pinglun.html" title="折腾一下-带头像显示的最新评论代码">折腾一下-带头像显示的最新评论代码</a> (35)<br /><small>&nbsp;
&nbsp;
博客不折腾不行啊，用现在这个主题的时候本来想弄个头像缓存来着，不过在...</small></li><li><a href="http://ashi.im/article/asppacktools.html" title="ASP打包解包工具代码(xml)">ASP打包解包工具代码(xml)</a> (1)<br /><small>网站备份通常是整站备份比较好，通过空间商的备份还是不太保险啊。原始人事件大家都知道，那么要如何备份呢...</small></li><li><a href="http://ashi.im/article/effectscode.html" title="网页特效代码">网页特效代码</a> (0)<br /><small>把你的鼠标滑过来看看
...</small></li><li><a href="http://ashi.im/article/asprollcode.html" title="ASP滚动代码">ASP滚动代码</a> (1)<br /><small>  我要滚动  

[html]
我要滚动 $Link_Code$
 



[/html]

78...</small></li><li><a href="http://ashi.im/article/digg.html" title="【PJ修改】digg功能（基于jquery)">【PJ修改】digg功能（基于jquery)</a> (0)<br /><small>打开：Template\static.htm 、 Template\Article.asp
找到：
...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/original_size_image-js.html/feed</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>给你的wordpress文章添加缩略图</title>
		<link>http://ashi.im/article/wordpress-thumb.html</link>
		<comments>http://ashi.im/article/wordpress-thumb.html#comments</comments>
		<pubDate>Wed, 27 Jan 2010 03:51:57 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[代码如诗]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[代码]]></category>
		<category><![CDATA[缩略图]]></category>

		<guid isPermaLink="false">http://ashi.im/article/wordpress-thumb.html</guid>
		<description><![CDATA[&#160;
&#160;
创建日志缩略图我想很多wper都有用过这个方法，很多主题都自带这个功能，由于我的主题没有自带，但是我又想用这个功能那么该怎么办呢？用插件？这个倒是可以实现，网络上有很多插件可以实现这个功能大家搜索一下就可以了。如果想用代码实现这个功能的继续往下看吧。
<strong>一、准备工作
	</strong>
1.在你的主题目录下建立一个文件夹scripts，在该目录下建立一个子目录cache用于缩略图缓存，把......<p class='alignright'><a href='http://ashi.im/article/wordpress-thumb.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<div id="yass_top_edge_dummy" style="width: 1px; height: 1px; padding: 0px; margin: -9px 0px 0px; border-width: 0px; display: block;">&nbsp;</div>
<div id="yass_top_edge" style="background-image: url(&quot;chrome://yass/content/edgebgtop.png&quot;); background-attachment: scroll; background-position: center bottom; padding: 0px; margin: 0px 0px 0px -8px; border-width: 0px; height: 0px; display: block; width: 1px;">&nbsp;</div>
<p style="margin-top: 20px;">创建日志缩略图我想很多wper都有用过这个方法，很多主题都自带这个功能，由于我的主题没有自带，但是我又想用这个功能那么该怎么办呢？用插件？这个倒是可以实现，网络上有很多插件可以实现这个功能大家搜索一下就可以了。如果想用代码实现这个功能的继续往下看吧。</p>
<p><span style="font-size: 18px;"><strong>一、准备工作<br />
	</strong></span></p>
<p><span style="color: rgb(0, 128, 0);">1.在你的主题目录下建立一个文件夹scripts，在该目录下建立一个子目录cache用于缩略图缓存，把这两个目录设为777。<br />
	</span></p>
<blockquote>
<p>如：<code>yourdomain.com/wp-content/themes/your-theme/scripts/</code></p>
<p><code>yourdomain.com/wp-content/themes/your-theme/scripts/cache/</code></p>
</blockquote>
<p><span style="color: rgb(0, 128, 0);">2.下载</span><a href="http://ashiim.googlecode.com/files/timthumb.php" target="_blank">TimThumb.php</a><span style="color: rgb(0, 128, 0);">并放入scripts文件夹</span>。</p>
<blockquote>
<p><code>yourdomain.com/wp-content/themes/your-theme/scripts/timthumb.php</code></p>
</blockquote>
<p>记得要设文件夹的属性为777。</p>
<p><span style="font-size: 18px;"><strong>二、插入调用代码<br />
	</strong></span></p>
<p>在你的主题目录下找到index.php或者home.php进行编辑，找到定义标题附近的地方插件代码。</p>
<p>这里提供3中不同的代码调用</p>
<p><span style="background-color: rgb(0, 128, 0);">1.只显示图片</span></p>
<blockquote><pre class="php" style="font-family: monospace;"><span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="font-style: italic; color: rgb(102, 102, 102);">// This will show only the image. Alter the width and height (in both places) to your needs. ?&gt;</span>
&nbsp;
<span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="color: rgb(177, 177, 0);">if</span> <span style="color: rgb(0, 153, 0);">(</span> get_post_meta<span style="color: rgb(0, 153, 0);">(</span><span style="color: rgb(0, 0, 136);">$post</span><span style="color: rgb(51, 153, 51);">-&gt;</span><span style="color: rgb(0, 64, 0);">ID</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 0, 255);">&#39;thumb&#39;</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 153, 0); font-weight: bold;">true</span><span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">{</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span>
	<span style="color: rgb(51, 153, 51);">&lt;</span>div <span style="color: rgb(0, 0, 0); font-weight: bold;">class</span><span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;postthumb&quot;</span><span style="color: rgb(51, 153, 51);">&gt;</span>
		<span style="color: rgb(51, 153, 51);">&lt;</span>img src<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php bloginfo(&#39;template_directory&#39;); ?&gt;/scripts/timthumb.php?src=&lt;?php echo get_post_meta(<span style="color: rgb(0, 102, 153); font-weight: bold;">$post-&gt;ID</span>, &quot;</span>thumb<span style="color: rgb(0, 0, 255);">&quot;, <span style="color: rgb(0, 102, 153); font-weight: bold;">$single</span> = true); ?&gt;&amp;h=150&amp;w=150&amp;zc=1&quot;</span> alt<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php the_title(); ?&gt;&quot;</span> width<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;100&quot;</span> height<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;57&quot;</span> <span style="color: rgb(51, 153, 51);">/&gt;</span>
	<span style="color: rgb(51, 153, 51);">&lt;/</span>div<span style="color: rgb(51, 153, 51);">&gt;</span>
<span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="color: rgb(0, 153, 0);">}</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span></pre>
</blockquote>
<p><span style="background-color: rgb(0, 128, 0);">2.显示图片，图片链接到文章。<br />
	</span></p>
<blockquote><pre class="php" style="font-family: monospace;">        <span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="font-style: italic; color: rgb(102, 102, 102);">// This will show the image and link the image to the post. Alter the width and height (in both places) to your needs. ?&gt;</span>
&nbsp;
        <span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="color: rgb(177, 177, 0);">if</span> <span style="color: rgb(0, 153, 0);">(</span> get_post_meta<span style="color: rgb(0, 153, 0);">(</span><span style="color: rgb(0, 0, 136);">$post</span><span style="color: rgb(51, 153, 51);">-&gt;</span><span style="color: rgb(0, 64, 0);">ID</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 0, 255);">&#39;thumb&#39;</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 153, 0); font-weight: bold;">true</span><span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">{</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span>
	<span style="color: rgb(51, 153, 51);">&lt;</span>div <span style="color: rgb(0, 0, 0); font-weight: bold;">class</span><span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;postthumb&quot;</span><span style="color: rgb(51, 153, 51);">&gt;</span>
		<span style="color: rgb(51, 153, 51);">&lt;</span>a href<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php the_permalink(); ?&gt;&quot;</span> rel<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;bookmark&quot;</span> title<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;Permanent Link to &lt;?php the_title(); ?&gt;&quot;</span><span style="color: rgb(51, 153, 51);">&gt;&lt;</span>img src<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php bloginfo(&#39;template_directory&#39;); ?&gt;/scripts/timthumb.php?src=&lt;?php echo get_post_meta(<span style="color: rgb(0, 102, 153); font-weight: bold;">$post-&gt;ID</span>, &quot;</span>thumb<span style="color: rgb(0, 0, 255);">&quot;, <span style="color: rgb(0, 102, 153); font-weight: bold;">$single</span> = true); ?&gt;&amp;h=150&amp;w=150&amp;zc=1&quot;</span> alt<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php the_title(); ?&gt;&quot;</span> width<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;150&quot;</span> height<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;150&quot;</span> <span style="color: rgb(51, 153, 51);">/&gt;&lt;/</span>a<span style="color: rgb(51, 153, 51);">&gt;</span>
	<span style="color: rgb(51, 153, 51);">&lt;/</span>div<span style="color: rgb(51, 153, 51);">&gt;</span>
<span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="color: rgb(0, 153, 0);">}</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span></pre>
</blockquote>
<p><span style="background-color: rgb(0, 128, 0);">3.显示图片，图片链接地址自定<br />
	</span></p>
<p>&nbsp;</p>
<blockquote><pre class="php" style="font-family: monospace;"><span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> 	<span style="font-style: italic; color: rgb(102, 102, 102);">// This will show the image and link it to anything you place into another custom field of &quot;imglink&quot;. </span>
		<span style="font-style: italic; color: rgb(102, 102, 102);">// Alter the width and height (in both places) to your needs.  </span>
  <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="color: rgb(177, 177, 0);">if</span> <span style="color: rgb(0, 153, 0);">(</span> get_post_meta<span style="color: rgb(0, 153, 0);">(</span><span style="color: rgb(0, 0, 136);">$post</span><span style="color: rgb(51, 153, 51);">-&gt;</span><span style="color: rgb(0, 64, 0);">ID</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 0, 255);">&#39;imglink&#39;</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 153, 0); font-weight: bold;">true</span><span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">{</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span>
	<span style="color: rgb(51, 153, 51);">&lt;</span>div <span style="color: rgb(0, 0, 0); font-weight: bold;">class</span><span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;postthumb&quot;</span><span style="color: rgb(51, 153, 51);">&gt;</span>
		<span style="color: rgb(51, 153, 51);">&lt;</span>a href<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php echo get_post_meta(<span style="color: rgb(0, 102, 153); font-weight: bold;">$post-&gt;ID</span>, &quot;</span>imglink<span style="color: rgb(0, 0, 255);">&quot;, <span style="color: rgb(0, 102, 153); font-weight: bold;">$single</span> = true); ?&gt;&quot;</span> rel<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;bookmark&quot;</span> title<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;Permanent Link to &lt;?php the_title(); ?&gt;&quot;</span><span style="color: rgb(51, 153, 51);">&gt;</span><span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?</span>php <span style="color: rgb(0, 153, 0);">}</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span><span style="color: rgb(51, 153, 51);">&lt;</span>img src<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php bloginfo(&#39;template_directory&#39;); ?&gt;/scripts/timthumb.php?src=&lt;?php echo get_post_meta(<span style="color: rgb(0, 102, 153); font-weight: bold;">$post-&gt;ID</span>, &quot;</span>thumb<span style="color: rgb(0, 0, 255);">&quot;, <span style="color: rgb(0, 102, 153); font-weight: bold;">$single</span> = true); ?&gt;&amp;h=150&amp;w=150&amp;zc=1&quot;</span> alt<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php the_title(); ?&gt;&quot;</span>  <span style="color: rgb(51, 153, 51);">/&gt;</span><span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?</span>php <span style="color: rgb(177, 177, 0);">if</span> <span style="color: rgb(0, 153, 0);">(</span> get_post_meta<span style="color: rgb(0, 153, 0);">(</span><span style="color: rgb(0, 0, 136);">$post</span><span style="color: rgb(51, 153, 51);">-&gt;</span><span style="color: rgb(0, 64, 0);">ID</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 0, 255);">&#39;imglink&#39;</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 153, 0); font-weight: bold;">true</span><span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">{</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span><span style="color: rgb(51, 153, 51);">&lt;/</span>a<span style="color: rgb(51, 153, 51);">&gt;</span><span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?</span>php <span style="color: rgb(0, 153, 0);">}</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span>
	<span style="color: rgb(51, 153, 51);">&lt;/</span>div<span style="color: rgb(51, 153, 51);">&gt;</span>
<span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="color: rgb(0, 153, 0);">}</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span></pre>
</blockquote>
<p><span style="font-size: 18px;"><strong>三、使用方法<br />
	</strong></span></p>
<p>1.在自定义字段值处填入你上传图片的地址</p>
<p>2.使用字段名称 <strong>thumb</strong></p>
<p>3.使用第三种代码的朋友出了需要填<strong> thumb</strong> 外还要填写一个 <strong>imglink</strong> 值。如图所示：</p>
<p><a class="thickbox" href="http://ashi.im/wp-content/uploads/2010/01/thumb.jpg" target="_blank"><img align="middle" alt="" border="0" class="aligncenter size-medium wp-image-1211" height="71" src="http://ashi.im/wp-content/uploads/2010/01/thumb-300x71.jpg" title="给你的wordpress文章添加缩略图" width="300" /></a></p>
<p><span style="font-size: 16px;"><span style="background-color: rgb(165, 42, 42);">PS,不知道怎么回事我在本地测试用第二种方法可以实现的，在服务器上偏偏不行，图片显示不了&#8230;囧，难道服务器问题？现在只能不用TimThumb.php了，把它删除掉，也不用在主题目录里建文件夹了。这样唯一不好的就是不能自己截取缩略图，不过貌似wordpress自带有150*150的缩略图。囧~</span></span></p>
<p>QQREADERA743E3A4568AE6F2</p>
<p>QQREADER63B8199F35B961F3</p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/original_size_image-js.html" title="浏览器可显示原图片的JS">浏览器可显示原图片的JS</a> (36)<br /><small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 在逛Opera...</small></li><li><a href="http://ashi.im/article/touxiang-pinglun.html" title="折腾一下-带头像显示的最新评论代码">折腾一下-带头像显示的最新评论代码</a> (35)<br /><small>&nbsp;
&nbsp;
博客不折腾不行啊，用现在这个主题的时候本来想弄个头像缓存来着，不过在...</small></li><li><a href="http://ashi.im/article/wp-themes-trytogo.html" title="启动新主题TryToGo">启动新主题TryToGo</a> (33)<br /><small>启用新的主题了，自己改了好几天，不过貌似还有BUG，IE下(我的是IE8)侧边栏有问题,IE6和IE...</small></li><li><a href="http://ashi.im/article/wordpress-301.html" title="wordpress 301重定向问题">wordpress 301重定向问题</a> (23)<br /><small>要实现的是从原来的域名ssslove.com/***.html访问的时候，通过301跳转到ashi....</small></li><li><a href="http://ashi.im/article/upgrade-wordpress.html" title="升级wordpress 2.9了">升级wordpress 2.9了</a> (51)<br /><small>今天回来了，顺便升级了一下wordpress，现在2.9了。由于我的wordpress下载、升级插件...</small></li><li><a href="http://ashi.im/article/it-is-wrong.html" title="好像出错了">好像出错了</a> (22)<br /><small>这两天有点事情没的更新，今天想趁有点时间弄下博客，可是...

安装“小墙”好像不能用的，自己发...</small></li><li><a href="http://ashi.im/article/win7-psd-patch.html" title="WIN7下的PSD缩略图补丁">WIN7下的PSD缩略图补丁</a> (52)<br /><small>哇哈哈，渐渐发现WIN7有很多不兼容的地方，也发现有很多地方微软做的确实不细心。上次阿士推介给大家G...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/wordpress-thumb.html/feed</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>折腾一下-带头像显示的最新评论代码</title>
		<link>http://ashi.im/article/touxiang-pinglun.html</link>
		<comments>http://ashi.im/article/touxiang-pinglun.html#comments</comments>
		<pubDate>Tue, 19 Jan 2010 03:23:15 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[代码如诗]]></category>
		<category><![CDATA[代码]]></category>
		<category><![CDATA[头像]]></category>
		<category><![CDATA[缓存]]></category>
		<category><![CDATA[评论]]></category>

		<guid isPermaLink="false">http://ashi.im/article/touxiang-pinglun.html</guid>
		<description><![CDATA[&#160;
&#160;
<a href="http://ashi.im/article/touxiang-pinglun.html" target="_self"><img align="left" alt="" border="0" class="thickbox" height="142" src="http://ashi.im/wp-content/uploads/dandy-pink.png" width="161" /></a>博客不折腾不行啊，用现在这个主题的时候本来想弄个头像缓存来着，不过在使用代码的时候发现问题了，不能用的。
<strong>zwwooooo</strong>写过一篇关于<a href="http://zww.me/archives/24711" target="_blank">willin的头像缓存</a>的文章，对willin大师的代码进行推广应用，里面提到我现在用的这个Elegant Box主题的修改，阿士上次用的时候发现博客出现问题，于是就作罢。这两天发现不弄不行啊，博客载入超慢，今天本想找Z大问问，不过代码清除......<p class='alignright'><a href='http://ashi.im/article/touxiang-pinglun.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<div id="yass_top_edge_dummy" style="border-width: 0px; margin: -9px 0px 0px; padding: 0px; width: 1px; height: 1px; display: block;">&nbsp;</div>
<div id="yass_top_edge" style="border-width: 0px; margin: 0px 0px 0px -8px; padding: 0px; background-image: url(chrome://yass/content/edgebgtop.png); background-attachment: scroll; background-position: center bottom; height: 0px; display: block; width: 1px;">&nbsp;</div>
<p style="margin-top: 20px;"><a href="http://ashi.im/article/touxiang-pinglun.html" target="_self"><img align="left" alt="" border="0" class="thickbox" height="142" src="http://ashi.im/wp-content/uploads/dandy-pink.png" width="161" /></a>博客不折腾不行啊，用现在这个主题的时候本来想弄个头像缓存来着，不过在使用代码的时候发现问题了，不能用的。</p>
<p><strong>zwwooooo</strong>写过一篇关于<a href="http://zww.me/archives/24711" target="_blank">willin的头像缓存</a>的文章，对willin大师的代码进行推广应用，里面提到我现在用的这个Elegant Box主题的修改，阿士上次用的时候发现博客出现问题，于是就作罢。这两天发现不弄不行啊，博客载入超慢，今天本想找Z大问问，不过代码清除格式后发现没出现问题&#8230;汗，还好，不要麻烦人家了。</p>
<p>这第一步完成了，那么就折腾下侧边栏的最新评论了，之前用的代码没有带头像显示，后来换成有带头像显示的了，不过没有头像缓存。既然Z大那里又这个代码，那么就学学吧，CP党，囧~</p>
<blockquote><pre><span style="color: rgb(0, 0, 128); font-weight: bold;">&lt;h2&gt;</span><span style="color: rgb(0, 0, 0);"><span style="color: rgb(0, 0, 0);">Recent Comments</span></span><span style="color: rgb(0, 0, 128); font-weight: bold;">&lt;/h2&gt;</span>
<span style="color: rgb(0, 0, 128); font-weight: bold;">&lt;ul</span> <span style="color: rgb(255, 0, 0);">class=</span><span style="color: rgb(0, 0, 255);">&quot;recentcomments&quot;</span><span style="color: rgb(0, 0, 128); font-weight: bold;">&gt;</span>
<span style="color: rgb(0, 128, 128);">&lt;?php</span>
<span style="color: rgb(0, 0, 128); font-weight: bold;">global</span> <span style="color: rgb(0, 0, 0);">$wpdb</span>;
<span style="color: rgb(0, 0, 0);">$sql</span> <span style="color: rgb(0, 0, 0);">=</span> <span style="color: rgb(0, 0, 255);">&quot;SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved, comment_type,comment_author_url,comment_author_email, SUBSTRING(comment_content,1,18) AS com_excerpt FROM</span> <span style="color: rgb(0, 0, 255);">$wpdb-&gt;comments</span> <span style="color: rgb(0, 0, 255);">LEFT OUTER JOIN</span> <span style="color: rgb(0, 0, 255);">$wpdb-&gt;posts</span> <span style="color: rgb(0, 0, 255);">ON (</span><span style="color: rgb(0, 0, 255);">$wpdb-&gt;comments</span><span style="color: rgb(0, 0, 255);">.comment_post_ID =</span> <span style="color: rgb(0, 0, 255);">$wpdb-&gt;posts</span><span style="color: rgb(0, 0, 255);">.ID) WHERE comment_approved = &#39;1&#39; AND comment_type = &#39;&#39; AND comment_author != &#39;zwwooooo&#39; AND post_password = &#39;&#39; ORDER BY comment_date_gmt DESC LIMIT 10&quot;</span>;
<span style="color: rgb(0, 0, 0);">$comments</span> <span style="color: rgb(0, 0, 0);">=</span> <span style="color: rgb(0, 0, 0);">$wpdb</span><span style="color: rgb(0, 0, 0);">-&gt;</span><span style="color: rgb(255, 0, 0);">get_results</span>(<span style="color: rgb(0, 0, 0);">$sql</span>);
<span style="color: rgb(0, 0, 128); font-weight: bold;">foreach</span> (<span style="color: rgb(0, 0, 0);">$comments</span> <span style="color: rgb(0, 0, 128); font-weight: bold;">as</span> <span style="color: rgb(0, 0, 0);">$comment</span>) <span style="color: rgb(0, 0, 0);">{</span>
<span style="color: rgb(0, 0, 0);">$output</span> <span style="color: rgb(0, 0, 0);">.=</span> <span style="color: rgb(0, 0, 255);">&quot;</span><span style="color: rgb(0, 0, 255);">\n</span><span style="color: rgb(0, 0, 255);">&lt;li&gt;&quot;.<span style="color: rgb(0, 0, 0);"><span style="color: rgb(0, 0, 0);">get_avatar</span>(<span style="color: rgb(0, 0, 0);">get_comment_author_email</span>(<span style="color: rgb(0, 0, 255);">&#39;comment_author_email&#39;</span><span style="color: rgb(0, 0, 0);">),</span> <span style="color: rgb(0, 0, 255);">32</span>)</span><span style="color: rgb(0, 0, 0);">.&quot;</span></span><span style="color: rgb(0, 0, 255);">&lt;a href=</span><span style="color: rgb(0, 0, 255);">\&quot;</span><span style="color: rgb(0, 0, 255);">&quot;</span> <span style="color: rgb(0, 0, 0);">.</span> <span style="color: rgb(0, 0, 0);">get_permalink</span>(<span style="color: rgb(0, 0, 0);">$comment</span><span style="color: rgb(0, 0, 0);">-&gt;</span><span style="color: rgb(255, 0, 0);">ID</span>) <span style="color: rgb(0, 0, 0);">.</span><span style="color: rgb(0, 0, 255);">&quot;#comment-&quot;</span> <span style="color: rgb(0, 0, 0);">.</span> <span style="color: rgb(0, 0, 0);">$comment</span><span style="color: rgb(0, 0, 0);">-&gt;</span><span style="color: rgb(255, 0, 0);">comment_ID</span> <span style="color: rgb(0, 0, 0);">.</span> <span style="color: rgb(0, 0, 255);">&quot;</span><span style="color: rgb(0, 0, 255);">\&quot;</span> <span style="color: rgb(0, 0, 255);">title=</span><span style="color: rgb(0, 0, 255);">\&quot;</span><span style="color: rgb(0, 0, 255);">on &quot;</span> <span style="color: rgb(0, 0, 0);">.</span><span style="color: rgb(0, 0, 0);">$comment</span><span style="color: rgb(0, 0, 0);">-&gt;</span><span style="color: rgb(255, 0, 0);">post_title</span> <span style="color: rgb(0, 0, 0);">.</span> <span style="color: rgb(0, 0, 255);">&quot;</span><span style="color: rgb(0, 0, 255);">\&quot;</span><span style="color: rgb(0, 0, 255);">&gt;&quot;</span> <span style="color: rgb(0, 0, 0);">.</span> <span style="color: rgb(0, 0, 0);">strip_tags</span>(<span style="color: rgb(0, 0, 0);">$comment</span><span style="color: rgb(0, 0, 0);">-&gt;</span><span style="color: rgb(255, 0, 0);">com_excerpt</span>)<span style="color: rgb(0, 0, 0);">.</span><span style="color: rgb(0, 0, 255);">&quot;&lt;/a&gt;...&lt;/li&gt;&quot;</span>;
<span style="color: rgb(0, 0, 0);">}</span>
<span style="color: rgb(0, 0, 0);">$output</span> <span style="color: rgb(0, 0, 0);">=</span> <span style="color: rgb(0, 0, 0);">convert_smilies</span>(<span style="color: rgb(0, 0, 0);">$output</span>);
<span style="color: rgb(0, 0, 128); font-weight: bold;">echo</span> <span style="color: rgb(0, 0, 0);">$output</span>;
<span style="color: rgb(0, 128, 128);">?&gt;</span>
<span style="color: rgb(0, 0, 128); font-weight: bold;">&lt;/ul&gt;
</span></pre>
</blockquote>
<p>这个是使用了willin的头像缓存后才能用的代码，至于没有缓存的代码，请移步。<a href="http://zww.me/archives/24736" target="_blank"><span style="background-color: rgb(178, 34, 34);">传送阵</span></a></p>
<blockquote>
<p><strong>说明：</strong></p>
<ul>
<li><strong>comment_date_gmt DESC LIMIT 10</strong> 中的 10 是指要显示的评论个数</li>
<li><strong>SUBSTRING(comment_content,1,18)</strong> 中的 18 是指每条评论的中文文字个数</li>
<li>头像的图片大小自行在style.css增加个名为&ldquo;recentcomments&rdquo;的 class 定义（例如width:32px; height:32px;）</li>
<li><strong>zwwooooo</strong> 改为你自己的用户名（就是不显示自己的评论）</li>
<li>参数 $a 是缓存路径</li>
</ul>
</blockquote>
<p>等等，今天要说明的就是这里了。这么一句：</p>
<blockquote>
<p><strong>zwwooooo</strong> 改为你自己的用户名（就是不显示自己的评论）</p>
</blockquote>
<p>我把他改为&quot;阿士&quot;，结果不行的，不知道是不是由于是中文的原因，改成我的登录用户名貌似也不行。没办法，有问题了，去Google一下，发现有人这样写的。</p>
<blockquote>
<p>AND user_id=&#39;0&#39;</p>
</blockquote>
<p>嘿嘿，搞定了，不知道什么原因，我的ID也不是0来着，反正能用就行了。所以把上面的：</p>
<blockquote><pre>AND comment_author != &#39;zwwooooo&#39;</pre>
</blockquote>
<p>改改就OK了。</p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/original_size_image-js.html" title="浏览器可显示原图片的JS">浏览器可显示原图片的JS</a> (36)<br /><small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 在逛Opera...</small></li><li><a href="http://ashi.im/article/wordpress-thumb.html" title="给你的wordpress文章添加缩略图">给你的wordpress文章添加缩略图</a> (31)<br /><small>&nbsp;
&nbsp;
创建日志缩略图我想很多wper都有用过这个方法，很多主题都自带这个功...</small></li><li><a href="http://ashi.im/article/asppacktools.html" title="ASP打包解包工具代码(xml)">ASP打包解包工具代码(xml)</a> (1)<br /><small>网站备份通常是整站备份比较好，通过空间商的备份还是不太保险啊。原始人事件大家都知道，那么要如何备份呢...</small></li><li><a href="http://ashi.im/article/effectscode.html" title="网页特效代码">网页特效代码</a> (0)<br /><small>把你的鼠标滑过来看看
...</small></li><li><a href="http://ashi.im/article/iecachedraw.html" title="IE缓存文件提取器">IE缓存文件提取器</a> (0)<br /><small>软件名称：IE缓存文件提取器(本人花钱下载的，现在免费提供给大家)
软件大小：838KB
软件简介：...</small></li><li><a href="http://ashi.im/article/asprollcode.html" title="ASP滚动代码">ASP滚动代码</a> (1)<br /><small>  我要滚动  

[html]
我要滚动 $Link_Code$
 



[/html]

78...</small></li><li><a href="http://ashi.im/article/digg.html" title="【PJ修改】digg功能（基于jquery)">【PJ修改】digg功能（基于jquery)</a> (0)<br /><small>打开：Template\static.htm 、 Template\Article.asp
找到：
...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/touxiang-pinglun.html/feed</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>WIN7下Media Player版本不对问题</title>
		<link>http://ashi.im/article/media-wrong-version.html</link>
		<comments>http://ashi.im/article/media-wrong-version.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 06:41:55 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[WIN7]]></category>
		<category><![CDATA[wmploc.dll]]></category>
		<category><![CDATA[版本号]]></category>

		<guid isPermaLink="false">http://ashi.im/article/media-wrong-version.html</guid>
		<description><![CDATA[<a href="http://ashi.im/article/media-wrong-version.html"><img class="size-full wp-image-1203 alignleft" style="border: 0px;" title="media图标" src="http://ashi.im/wp-content/uploads/2010/01/media.jpg" alt="" width="188" height="229" /></a>上次阿士在WPG论坛分享过<a href="http://www.wpg.im/bbs/thread-1661-1-1.html" target="_blank"><strong>系统图标</strong></a>来着，这套图标确实很漂亮不过我只有32位版本的，64位的就没有了。不过在部分机子上使用这套图标的时候会出现问题，如下图：
<a class="thickbox" href="http://ashi.im/wp-content/uploads/2010/01/media-r.jpg" target="_blank"><img class="aligncenter size-medium wp-image-1204" style="border: 0px;" title="media版本号不对问题" src="http://ashi.im/wp-content/uploads/2010/01/media-r-300x174.jpg" alt="" width="300" height="174" /></a>
那么怎么解决这个问题呢？重装是不行的，看看下面的方法吧。
1、进命令提示符打regedit进入注册表，找到
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MediaPlayer\Setup\Installed V......<p class='alignright'><a href='http://ashi.im/article/media-wrong-version.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://ashi.im/article/media-wrong-version.html"><img class="size-full wp-image-1203 alignleft" style="border: 0px;" title="media图标" src="http://ashi.im/wp-content/uploads/2010/01/media.jpg" alt="" width="188" height="229" /></a>上次阿士在WPG论坛分享过<a href="http://www.wpg.im/bbs/thread-1661-1-1.html" target="_blank"><strong>系统图标</strong></a>来着，这套图标确实很漂亮不过我只有32位版本的，64位的就没有了。不过在部分机子上使用这套图标的时候会出现问题，如下图：</p>
<p style="text-align: center;"><a class="thickbox" href="http://ashi.im/wp-content/uploads/2010/01/media-r.jpg" target="_blank"><img class="aligncenter size-medium wp-image-1204" style="border: 0px;" title="media版本号不对问题" src="http://ashi.im/wp-content/uploads/2010/01/media-r-300x174.jpg" alt="" width="300" height="174" /></a></p>
<p>那么怎么解决这个问题呢？重装是不行的，看看下面的方法吧。</p>
<p>1、进命令提示符打regedit进入注册表，找到</p>
<blockquote><p>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MediaPlayer\Setup\Installed Versions 下的wmploc.dll</p></blockquote>
<p>把二进制值改成</p>
<blockquote><p>00 00 0C 00 01 40 B0 1D</p></blockquote>
<p>这种方法很简单吧，阿士用过这种方法，测试可行。</p>
<p>2、进入控制面板的程序，“程序进入”-“打开或关闭windows功能”，先去掉“媒体功能”前的√，确定，重启。然后再进入，加上“媒体功能”前的√。就又能用了。</p>
<p>3、这个方法适合刚重装了系统的朋友。先替换图标或是破解的玻璃主题然后运行Media Player，因为第一次运行会弹出设置窗口这样以后没有提示版本号不对的问题。</p>
<p>希望能帮到大家。</p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/watch-tv-with-media.html" title="windows media可用600+的电视台">windows media可用600+的电视台</a> (20)<br /><small>个人觉得WIN7下的media player加上WIN7codes解码包不差于任何的播放器，我觉得微...</small></li><li><a href="http://ashi.im/article/speed-up-win7.html" title="加速WIN7,缩短响应时间">加速WIN7,缩短响应时间</a> (54)<br /><small>阿士用WIN7的时候经常遇到"程序未响应"这种情况，然后就要等它自动响应起来，特别是最近packer...</small></li><li><a href="http://ashi.im/article/win7-psd-patch.html" title="WIN7下的PSD缩略图补丁">WIN7下的PSD缩略图补丁</a> (52)<br /><small>哇哈哈，渐渐发现WIN7有很多不兼容的地方，也发现有很多地方微软做的确实不细心。上次阿士推介给大家G...</small></li><li><a href="http://ashi.im/article/xp-to-win7.html" title="XP变WIN7，界面仿真">XP变WIN7，界面仿真</a> (36)<br /><small>话说这两天阿士都在鼓捣着Firefox呢，之前的版本太低了，没更新，所以删除了。重新下载后发现好多插...</small></li><li><a href="http://ashi.im/article/image-viewer-for-win7.html" title="WIN7下的GIF图片动态查看工具">WIN7下的GIF图片动态查看工具</a> (69)<br /><small>大家是否发现在WIN7下查看GIF文件都是用IE浏览器打开的？是不是觉得很不过瘾？想想在XP下的Wi...</small></li><li><a href="http://ashi.im/article/glassnotes.html" title="WIN7可用透明记事本Glassnotes">WIN7可用透明记事本Glassnotes</a> (64)<br /><small>这款漂亮而且实用的记事本确实很养眼啊，在WIN7和Vista下的透明效果让人爱不释手。
**仅支持...</small></li><li><a href="http://ashi.im/article/all-in-one.html" title="光盘刻录大师6.0破解补丁">光盘刻录大师6.0破解补丁</a> (35)<br /><small>前两天为了刻录下自己下载的WIN7系统，买了DVD光盘准备刻录。由于自己的电脑没有刻录机，所以挺郁闷...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/media-wrong-version.html/feed</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>wordpress 301重定向问题</title>
		<link>http://ashi.im/article/wordpress-301.html</link>
		<comments>http://ashi.im/article/wordpress-301.html#comments</comments>
		<pubDate>Wed, 06 Jan 2010 11:37:34 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[代码如诗]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[301重定向]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ashi.im/article/wordpress-301.html</guid>
		<description><![CDATA[要实现的是从原来的域名ssslove.com/***.html访问的时候，通过301跳转到ashi.im/***.html
由于种种原因更换域名博客域名的博主是不是常常为了如何进行301重定向烦恼呢?做好301重定向是一项重要的工作啊。前段时间<strong>万戈</strong>换域名了，他的博客中提到了一些换域名后要做的事情对阿士来说挺有帮助的，不过阿士不同的是：在CP面板里做重定向了貌似不能进行跳转的，请教<strong>蓝冰</strong>通过.htac......<p class='alignright'><a href='http://ashi.im/article/wordpress-301.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<blockquote><p>要实现的是从原来的域名ssslove.com/***.html访问的时候，通过301跳转到ashi.im/***.html</p></blockquote>
<p>由于种种原因更换域名博客域名的博主是不是常常为了如何进行301重定向烦恼呢?做好301重定向是一项重要的工作啊。前段时间<strong>万戈</strong>换域名了，他的博客中提到了一些换域名后要做的事情对阿士来说挺有帮助的，不过阿士不同的是：在CP面板里做重定向了貌似不能进行跳转的，请教<strong>蓝冰</strong>通过.htaccess设置后发现也不起作用&#8230;&#8230;囧了。</p>
<p>后来还是蓝冰找到办法，阿士在这里记录之，方便自己，也方便大家。</p>
<p><strong><span style="color: #800080;">在博客的根目录中找到wp-blog-header.php</span></strong></p>
<p><strong><span style="color: #800080;">用文本编辑器(推荐用Notepad++)打开，在开头加入以下代码：</span></strong></p>
<blockquote><p>if (strtolower($_SERVER['SERVER_NAME'])!=&#8217;ashi.im&#8217;){<br />
 $URIRedirect=$_SERVER['REQUEST_URI'];<br />
 if(strtolower($URIRedirect)==&#8221;/index.php&#8221;){<br />
  $URIRedirect=&#8221;/&#8221;;<br />
 }<br />
 header(&#8216;HTTP/1.1 301 Moved Permanently&#8217;);<br />
 header(&#8216;Location:http://ashi.im&#8217;.$URIRedirect);<br />
 exit();<br />
}</p></blockquote>
<p>修改上面的域名ashi.im为你的域名就可以了。</p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/wordpress-thumb.html" title="给你的wordpress文章添加缩略图">给你的wordpress文章添加缩略图</a> (31)<br /><small>&nbsp;
&nbsp;
创建日志缩略图我想很多wper都有用过这个方法，很多主题都自带这个功...</small></li><li><a href="http://ashi.im/article/wp-themes-trytogo.html" title="启动新主题TryToGo">启动新主题TryToGo</a> (33)<br /><small>启用新的主题了，自己改了好几天，不过貌似还有BUG，IE下(我的是IE8)侧边栏有问题,IE6和IE...</small></li><li><a href="http://ashi.im/article/upgrade-wordpress.html" title="升级wordpress 2.9了">升级wordpress 2.9了</a> (51)<br /><small>今天回来了，顺便升级了一下wordpress，现在2.9了。由于我的wordpress下载、升级插件...</small></li><li><a href="http://ashi.im/article/it-is-wrong.html" title="好像出错了">好像出错了</a> (22)<br /><small>这两天有点事情没的更新，今天想趁有点时间弄下博客，可是...

安装“小墙”好像不能用的，自己发...</small></li><li><a href="http://ashi.im/article/changeskin.html" title="博客更换下皮肤">博客更换下皮肤</a> (4)<br /><small>恩，皮肤用久了大家可能觉得没什么，但是自己觉得有点疲劳了，所以今天上网找了一个皮肤。这个皮肤看着还行...</small></li><li><a href="http://ashi.im/article/close-wp-antosave.html" title="关闭wordpress的文章修订版本及自动保存功能">关闭wordpress的文章修订版本及自动保存功能</a> (3)<br /><small> 今日打开自己的博客，发现一个小错误，然后回到后台修改了一下，再发布一下。无意当中，翻看到编辑页面的...</small></li><li><a href="http://ashi.im/article/wordpress-themes.html" title="wordpress主题">wordpress主题</a> (1)<br /><small>这两天抽出时间把现在用的这个主题给汉化了，其实说汉化也不算了，就是在自己认为要用中文的地方改了。现在...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/wordpress-301.html/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>加速WIN7,缩短响应时间</title>
		<link>http://ashi.im/article/speed-up-win7.html</link>
		<comments>http://ashi.im/article/speed-up-win7.html#comments</comments>
		<pubDate>Fri, 18 Dec 2009 01:54:55 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[WIN7]]></category>
		<category><![CDATA[加速]]></category>
		<category><![CDATA[响应]]></category>

		<guid isPermaLink="false">http://ashi.im/article/%e5%8a%a0%e9%80%9fwin7%e7%bc%a9%e7%9f%ad%e5%93%8d%e5%ba%94%e6%97%b6%e9%97%b4.html</guid>
		<description><![CDATA[<a class="thickbox" href="http://www.douyageng.com/?TB_iframe=true">阿士</a>用WIN7的时候经常遇到&#8221;程序未响应&#8221;这种情况，然后就要等它自动响应起来，特别是最近packer js粘贴代码的时候NotePad++总是提示未响应，郁闷啊。那么有没有方法让响应时间缩短呢？
1.运行注册表（regedit），依次打开HKEY_CURRENT_USER\Control Panel\Desktop，然后再右侧窗口新建一个“DWORD( 32-位)值(D)”......<p class='alignright'><a href='http://ashi.im/article/speed-up-win7.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p><a class="thickbox" href="http://www.douyageng.com/?TB_iframe=true">阿士</a>用WIN7的时候经常遇到&#8221;程序未响应&#8221;这种情况，然后就要等它自动响应起来，特别是最近packer js粘贴代码的时候NotePad++总是提示未响应，郁闷啊。那么有没有方法让响应时间缩短呢？</p>
<blockquote><p>1.运行注册表（regedit），依次打开HKEY_CURRENT_USER\Control Panel\Desktop，然后再右侧窗口新建一个“DWORD( 32-位)值(D)”，看图：</p>
<p style="text-align: center;"><a class="thickbox" href="http://ashi.im/wp-content/uploads/2009/12/FLY2.jpg" target="_blank"><img class="aligncenter size-full wp-image-1176" style="border: 0px;" title="新建一个“DWORD( 32-位)值(D)" src="http://ashi.im/wp-content/uploads/2009/12/FLY2.jpg" alt="新建一个“DWORD( 32-位)值(D)" width="467" height="116" /></a></p>
<p>2.将新建的值重命名为:&#8221;WaitTokillAppTimeout&#8221;里面的默认值。</p></blockquote>
<p>这样的话就可以一定程度上缩短WIN7程序的响应时间，避免系统频繁假死等问题。事实上，“WaitTokillAppTimeout”这个值在VISTA系统中是默认存在的，但是在WIN7下野不知道微软是怎么想的居然没了，费解啊。但对于我们这样的普通User来说，能够有利于系统的便捷功能，该加的还是可以加的。</p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/media-wrong-version.html" title="WIN7下Media Player版本不对问题">WIN7下Media Player版本不对问题</a> (21)<br /><small>上次阿士在WPG论坛分享过系统图标来着，这套图标确实很漂亮不过我只有32位版本的，64位的就没有了。...</small></li><li><a href="http://ashi.im/article/win7-psd-patch.html" title="WIN7下的PSD缩略图补丁">WIN7下的PSD缩略图补丁</a> (52)<br /><small>哇哈哈，渐渐发现WIN7有很多不兼容的地方，也发现有很多地方微软做的确实不细心。上次阿士推介给大家G...</small></li><li><a href="http://ashi.im/article/xp-to-win7.html" title="XP变WIN7，界面仿真">XP变WIN7，界面仿真</a> (36)<br /><small>话说这两天阿士都在鼓捣着Firefox呢，之前的版本太低了，没更新，所以删除了。重新下载后发现好多插...</small></li><li><a href="http://ashi.im/article/image-viewer-for-win7.html" title="WIN7下的GIF图片动态查看工具">WIN7下的GIF图片动态查看工具</a> (69)<br /><small>大家是否发现在WIN7下查看GIF文件都是用IE浏览器打开的？是不是觉得很不过瘾？想想在XP下的Wi...</small></li><li><a href="http://ashi.im/article/glassnotes.html" title="WIN7可用透明记事本Glassnotes">WIN7可用透明记事本Glassnotes</a> (64)<br /><small>这款漂亮而且实用的记事本确实很养眼啊，在WIN7和Vista下的透明效果让人爱不释手。
**仅支持...</small></li><li><a href="http://ashi.im/article/watch-tv-with-media.html" title="windows media可用600+的电视台">windows media可用600+的电视台</a> (20)<br /><small>个人觉得WIN7下的media player加上WIN7codes解码包不差于任何的播放器，我觉得微...</small></li><li><a href="http://ashi.im/article/all-in-one.html" title="光盘刻录大师6.0破解补丁">光盘刻录大师6.0破解补丁</a> (35)<br /><small>前两天为了刻录下自己下载的WIN7系统，买了DVD光盘准备刻录。由于自己的电脑没有刻录机，所以挺郁闷...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/speed-up-win7.html/feed</wfw:commentRss>
		<slash:comments>54</slash:comments>
		</item>
		<item>
		<title>分享一个免费发短信的地方</title>
		<link>http://ashi.im/article/free-sms.html</link>
		<comments>http://ashi.im/article/free-sms.html#comments</comments>
		<pubDate>Tue, 24 Nov 2009 06:44:00 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[免费]]></category>
		<category><![CDATA[全球]]></category>
		<category><![CDATA[短信]]></category>

		<guid isPermaLink="false">http://ashi.im/?p=1132</guid>
		<description><![CDATA[用手机或者电脑登陆，就可以免费发送短信。阿士测试了，移动的号码可以，我有一个天翼的号码，但是没收到短信，估计不行的，联通、小灵通这么没有条件测试，有条件的朋友可以试试，然后告诉我一声啊。

发往中国大陆用户手机请在号码前加86.目前只支持英文,中文发送显示拼音.支持群发,支持手机上网发送。
......<p class='alignright'><a href='http://ashi.im/article/free-sms.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>用手机或者电脑登陆，就可以免费发送短信。阿士测试了，移动的号码可以，我有一个天翼的号码，但是没收到短信，估计不行的，联通、小灵通这么没有条件测试，有条件的朋友可以试试，然后告诉我一声啊。</p>
<p>发往中国大陆用户手机请在号码前加86.目前只支持英文,中文发送显示拼音.支持群发,支持手机上网发送。</p>
<p>网址是：<a href="http://www.iie.cc/gv/" target="_blank">http://www.iie.cc/gv/</a></p>
<p>赶快去试试吧。</p>
<p>ps：切勿用于滥发垃圾短信,诈骗短信,违者会被追究责任.</p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/99pan.html" title="免费的网络硬盘-99盘">免费的网络硬盘-99盘</a> (5)<br /><small>上几天在某个论坛上看到一个帖子：禁止发布99盘下载的帖子！那时候虽然好奇，但没有多留心。今天看到一个...</small></li><li><a href="http://ashi.im/article/dr-web-anti-virus.html" title="大蜘蛛5.0标准版注册激活送豪礼">大蜘蛛5.0标准版注册激活送豪礼</a> (2)<br /><small>来自俄罗斯的大蜘蛛听过的朋友应该越来越多了，面对现在的众多杀毒软件你是不是无从选择？那么试试阿士推荐...</small></li><li><a href="http://ashi.im/article/win7-method-of-one-year-free.html" title="WIN7免费试用一年的方法">WIN7免费试用一年的方法</a> (7)<br /><small>今天看到海天的评论了，WIN7激活的确是一块心病啊，不过阿士还是不建议用软件、电话什么激活，如果大家...</small></li><li><a href="http://ashi.im/article/qiannao.html" title="免费的网络硬盘—千脑">免费的网络硬盘—千脑</a> (2)<br /><small>提供下载的文件放在哪里好呢？这一直是困扰大家的问题所在。之前用过许多其他的，但最终决定用千脑，原因无...</small></li><li><a href="http://ashi.im/article/mywordpress.html" title="我的wordpress">我的wordpress</a> (0)<br /><small>申请了国外的一个免费空间，今天起开始我的wordpress之旅，要坚持！之前很想用wordpress...</small></li><li><a href="http://ashi.im/article/msn-kaba.html" title="MSN – 免费领取卡巴斯基反病毒软件2010半年激活码">MSN – 免费领取卡巴斯基反病毒软件2010半年激活码</a> (1)<br /><small>MSN联合著名杀毒软件卡巴斯基推出的免费活动，MSN用户免费领取卡巴斯基反病毒软件2010半年激活码...</small></li><li><a href="http://ashi.im/article/mcdonaldfreedrink.html" title="麦当劳免费领杯饮料">麦当劳免费领杯饮料</a> (2)<br /><small>2009年8月26日起，中国移动用户发短信免费获取麦当劳雪碧麦乐酷1杯。中国移动用户发送L到106 ...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/free-sms.html/feed</wfw:commentRss>
		<slash:comments>66</slash:comments>
		</item>
		<item>
		<title>全系列安装WIN7的方法-总有一种适合你</title>
		<link>http://ashi.im/article/the-way-setup-win7.html</link>
		<comments>http://ashi.im/article/the-way-setup-win7.html#comments</comments>
		<pubDate>Thu, 05 Nov 2009 11:06:07 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[WIN7]]></category>
		<category><![CDATA[安装]]></category>
		<category><![CDATA[方法]]></category>
		<category><![CDATA[系统]]></category>

		<guid isPermaLink="false">http://ashi.im/?p=1014</guid>
		<description><![CDATA[现在大家下的WIN7系统一般都是ISO镜像的吧，有条件的可以刻录成光盘，这样很简单，但是对于一些如本人一般没有条件的呢？那么就会自然想到硬盘安装，那么下面罗列下安装WIN7系统的方法，希望能够帮到需要的朋友们。
首先我们排除这种：下载-刻录（光盘安装），不过这个也是一种方法了，就是要费一张光盘。买的话记得买DVD版的，这个有4.7G的容量，CD版的只有700M哦。
正式说说硬盘安装的方法。如果大家......<p class='alignright'><a href='http://ashi.im/article/the-way-setup-win7.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>现在大家下的WIN7系统一般都是ISO镜像的吧，有条件的可以刻录成光盘，这样很简单，但是对于一些如本人一般没有条件的呢？那么就会自然想到硬盘安装，那么下面罗列下安装WIN7系统的方法，希望能够帮到需要的朋友们。</p>
<p>首先我们排除这种：下载-刻录（光盘安装），不过这个也是一种方法了，就是要费一张光盘。买的话记得买DVD版的，这个有4.7G的容量，CD版的只有700M哦。</p>
<p>正式说说硬盘安装的方法。如果大家有虚拟光驱那么好说了，没有的话可以用WINRAR直接解压出来。</p>
<p><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">一、</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">windows 7</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">系统下全新安装高版</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">Windows</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">7</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">：</span></span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">1</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、下载</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">windows7 7100 ISO</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">镜像</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(RC</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">或</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">RTM)</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">，用虚拟光驱拷贝至非</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">C</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">如</span></span></span><span style="color: #00ff00;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">D:\7100)<br />
2</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、开机按</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">F8——</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">修复系统</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">——</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">选择最后一项命令修复</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">——</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">在命令框输入</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">“D:\7100\sources\setup.exe“(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">不带引号</span></span></span><span style="color: #00ff00;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">)<br />
3</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、进入安装界面、选择</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">custom</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">安装</span></span></span><span style="color: #000000;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">4</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、选择安装语言、格式化</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">C</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘</span></span></span></span><span style="color: #000000;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">5</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">OK</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">了，装好后是一个纯系统</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">非双系统</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">)</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">。</span></span></span></span></p>
<p><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">二、如果有</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">vista</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">安装盘的话，方法也很简单：</span></span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">1</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、下载</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">windows7 7100 ISO</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">镜像</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(RC</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">或</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">RTM)</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">，用虚拟光驱拷贝至非</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">C</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">如</span></span></span><span style="color: #00ff00;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">D:\7100)<br />
2</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">BIOS</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">中选择光驱启动，进入</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">vista</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">安装界面</span></span></span><span style="color: #000000;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">3</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、选择左下角修复计算机</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">自动搜索系统，提示加载驱动或关闭，选择关闭进入修复选项</span></span></span></span><span style="color: #00ff00;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">)<br />
4</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、选择最后一项命令修复，在命令框输入</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">“D:\7100\sources\setup.exe“(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">不带引号</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">)</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">，开始安装</span></span></span><span style="color: #000000;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">5</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、选择安装语言、格式化</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">C</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"> (</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">即使</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">C</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘原本没有系统此法也可行</span></span></span></span><span style="color: #00ff00;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">)</span></span><br />
</span><span style="color: #000000;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
</span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">三、</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">XP</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">系统下全新安装</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">windows 7</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">：</span></span></span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">1</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、下载</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">windows 7 7100 ISO</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">镜像</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(RC</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">或</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">RTM)</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">，用虚拟光驱拷贝至非</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">C</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">如</span></span></span><span style="color: #00ff00;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">D:\7100)<br />
2</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、把</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">D:\7100</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">目录下的</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">bootmgr</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">和</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">boot</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">目录</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">其实只要里面的</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">boot.sdi</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">和</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">bcd</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">文件</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">)</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">拷贝到</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">c</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘根目录下</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">,</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">并在</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">C</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘根目录下建个</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">sources</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">文件夹。</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(XP</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">下不需要取得管理员权限</span></span></span><span style="color: #00ff00;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">)<br />
3</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、把</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">D:\7100\sources</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">下的</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">boot.win</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">复制到</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">C</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘刚建的</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">sources</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">文件夹</span></span></span><span style="color: #000000;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">4</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、用管理员身份运行</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">cmd</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">，然后输入</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">c:\boot\bootsect.exe /nt60 c: </span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">提示</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">successful(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">即成功了</span></span></span></span><span style="color: #00ff00;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">!)<br />
5</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、关闭</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">cmd</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">窗口重启计算机，自动进入安装界面，选择安装语言，同时选择适合自己的时间和货币显示种类及键盘和输入方式</span></span></span><span style="color: #000000;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">6</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、出现</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">“</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">开始安装界面</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">”</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">，</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">要注意了，不点击</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">“</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">现在安装</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">”)</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">点左下角</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">“</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">修复计算机</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">”(repair mycomputer)</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">，进入</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">&#8220;</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">系统恢复选择</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">&#8220;</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">，选择最后一项</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">&#8220;</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">命令提示符</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">&#8220;(commandprompt)</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">，进入</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">DOS</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">窗口</span></span></span></span><span style="color: #000000;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">7</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、输入</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">“D:\7100\sources\setup.exe“(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">不带引号</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">)</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">，开始安装</span></span></span></span><span style="color: #000000;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">8</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、选择安装语言、格式化</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">C</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘，就</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">OK</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">了</span></span></span></span><br />
<span style="color: #000000;"><br />
<span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">四、</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">vista</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">系统下全新安装</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">windows7(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">实践证明</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">XP</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">用此种方法也更加方便</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">)</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">：</span></span></span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">1</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、下载</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">windows 7 7100 ISO</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">镜像</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(RC</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">或</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">RTM)</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">，用虚拟光驱拷贝至非</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">C</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">如</span></span></span><span style="color: #00ff00;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">D:\7100)<br />
2</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、复制</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">D:\7100</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">文件夹中的</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">Boot</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">EFI</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">sources</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">文件夹和</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">bootmgr</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">至</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">C</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘根目录下</span></span></span><span style="color: #000000;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">3</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、复制</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">D:\7100\boot</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">下</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">Bootsect.exe</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">至</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">C</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘根目录下</span></span></span></span><span style="color: #000000;"><br />
<span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">第</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">2</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">部需取得管理员权限</span></span></span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">4</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、管理员身份运行</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">cmd</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">，输入</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">c:\bootsect.exe/nt60 c:</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">并回车</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">(</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">最好复制，中间有空格</span></span></span><span style="color: #00ff00;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">)<br />
5</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、重启系统自动进入安装界面，点左下角的修复计算机</span></span></span><span style="color: #00ff00;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">repair my computer)<br />
6</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、选择最后一项命令提示符，进入</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">DOS</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">窗口，输入</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">D:\7100\sources\setup.exe</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">进入安装界面</span></span></span><span style="color: #000000;"><span style="font-family: Verdana;"><span style="font-size: 11.5pt;"><br />
<span style="color: #00ff00;">7</span></span></span><span style="color: #00ff00;"><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">、选择安装语言、格式化</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">C</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">盘，就</span></span><span style="font-family: Verdana;"><span style="font-size: 11.5pt;">OK</span></span><span style="font-family: 宋体;"><span style="font-size: 11.5pt;">了</span></span></span></span></p>
<p><span style="color: #00ff00;"><span style="font-size: medium;">五</span>、在PE系统下的安装方式：</span></p>
<p><span style="color: #00ff00;">1、下载windows 7 7100 ISO镜像(RC或RTM)，用虚拟光驱拷贝至非C盘(如D:\7100)<br />
2、格式C盘，ntfs格式。<br />
2、把D:\7100目录下的bootmgr和boot目录(其实只要里面的boot.sdi和bcd文件)拷贝到c盘根目录下,并在C盘根目录下建个sources文件夹。<br />
3、把D:\7100\sources下的boot.win复制到C盘刚建的sources文件夹<br />
4、运行cmd，然后输入c:\boot\bootsect.exe/nt60 c: 提示successful(即成功了!)<br />
5、关闭cmd窗口，重启计算机，自动进入安装界面，选择安装语言，同时选择适合自己的时间和货币显示种类及键盘和输入方式<br />
6、出现“开始安装界面”，(要注意了，不点击“现在安装”)点左下角“修复计算机”(repair mycomputer)，进入&#8221;系统恢复选择&#8221;，选择最后一项&#8221;命令提示符&#8221;(commandprompt)，进入DOS窗口<br />
7、输入“D:\7100\sources\setup.exe“(不带引号)，开始安装<br />
8、选择安装语言、格式化C盘，就OK了</span></p>
<p>这些方法不光是安装windows7可以用，安装vista也可以用，要看你怎么灵活运用了。</p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/windows7-hard-drive-installation-tool.html" title="windows7硬盘安装工具">windows7硬盘安装工具</a> (0)<br /><small>       对于没刻录机的朋友，硬盘安装系统是一个必谈话题，不过一些简单的安装方法就不再谈了：如在...</small></li><li><a href="http://ashi.im/article/all-in-one.html" title="光盘刻录大师6.0破解补丁">光盘刻录大师6.0破解补丁</a> (35)<br /><small>前两天为了刻录下自己下载的WIN7系统，买了DVD光盘准备刻录。由于自己的电脑没有刻录机，所以挺郁闷...</small></li><li><a href="http://ashi.im/article/win7-method-of-one-year-free.html" title="WIN7免费试用一年的方法">WIN7免费试用一年的方法</a> (7)<br /><small>今天看到海天的评论了，WIN7激活的确是一块心病啊，不过阿士还是不建议用软件、电话什么激活，如果大家...</small></li><li><a href="http://ashi.im/article/drinking-drunk-last-night.html" title="昨晚喝酒醉了">昨晚喝酒醉了</a> (7)<br /><small>       昨天晚饭没吃想等晚上吃点心，后来被同学叫去喝酒了。本人酒量本来就不高，要色子技术也不行...</small></li><li><a href="http://ashi.im/article/media-wrong-version.html" title="WIN7下Media Player版本不对问题">WIN7下Media Player版本不对问题</a> (21)<br /><small>上次阿士在WPG论坛分享过系统图标来着，这套图标确实很漂亮不过我只有32位版本的，64位的就没有了。...</small></li><li><a href="http://ashi.im/article/speed-up-win7.html" title="加速WIN7,缩短响应时间">加速WIN7,缩短响应时间</a> (54)<br /><small>阿士用WIN7的时候经常遇到"程序未响应"这种情况，然后就要等它自动响应起来，特别是最近packer...</small></li><li><a href="http://ashi.im/article/win7-psd-patch.html" title="WIN7下的PSD缩略图补丁">WIN7下的PSD缩略图补丁</a> (52)<br /><small>哇哈哈，渐渐发现WIN7有很多不兼容的地方，也发现有很多地方微软做的确实不细心。上次阿士推介给大家G...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/the-way-setup-win7.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>教你IE主页永不被篡改的方法</title>
		<link>http://ashi.im/article/ie-never-change.html</link>
		<comments>http://ashi.im/article/ie-never-change.html#comments</comments>
		<pubDate>Thu, 05 Nov 2009 10:32:32 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[WIN7]]></category>
		<category><![CDATA[主页]]></category>
		<category><![CDATA[篡改]]></category>

		<guid isPermaLink="false">http://ashi.im/?p=1007</guid>
		<description><![CDATA[还未安装WIN7的时候阿士遇到过一次最严重的主页篡改事件，网络上绝大部分的方法试过以后都不行。最后发现居然是因为IE图标的目标被篡改的结果，删除一段代码后就OK了。哎，不得不感慨一下那个网站的费尽苦心啊o(╯□╰)o.
各位也许也有过这样的烦恼，点击XXXX网页，或安装XXXX软件后，再打开IE网页看，已被修改为XXXX主页，现在推荐一种方法。让你的系统IE主页永不被篡改 。该方法适用于Xp/Vi......<p class='alignright'><a href='http://ashi.im/article/ie-never-change.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>还未安装WIN7的时候阿士遇到过一次最严重的主页篡改事件，网络上绝大部分的方法试过以后都不行。最后发现居然是因为IE图标的目标被篡改的结果，删除一段代码后就OK了。哎，不得不感慨一下那个网站的费尽苦心啊o(╯□╰)o.</p>
<p>各位也许也有过这样的烦恼，点击XXXX网页，或安装XXXX软件后，再打开IE网页看，已被修改为XXXX主页，现在推荐一种方法。让你的系统IE主页永不被篡改 。该方法适用于Xp/Vista/Win7，现在阿士装了WIN7，那么就以WIN7为例吧。</p>
<blockquote>
<p style="text-align: left;"><strong><span style="COLOR: #0000ff">按下Windows+R打开运行窗口<br />
输入gpedit.msc打开组策略<br />
选中“用户配置”&#8211;“管理模版”&#8211;“windows组件”&#8211;“Internet Explorer”<br />
在右边的窗口中找到“禁用更改主页设置”<br />
启用它，并指定你的唯一主页。</span></strong></p></blockquote>
<p style="text-align: center;"><strong><span style="COLOR: #0000ff"><span id="att_185309"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/11/dbbd_93_35_7422e3478b0524b.jpg" target="_blank"><img class="aligncenter" style="border: 0px;" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/11/dbbd_93_35_7422e3478b0524b.jpg');" src="http://ashi.im/wp-content/uploads/2009/11/dbbd_93_35_7422e3478b0524b.jpg" border="0" alt="" width="400" /></a></span></span></strong></p>
<p style="text-align: center;"><span id="att_185310"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/11/51fc_93_35_f58ebf3962248eb.jpg" target="_blank"><img class="aligncenter" style="border: 0px;" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/11/51fc_93_35_f58ebf3962248eb.jpg');" src="http://ashi.im/wp-content/uploads/2009/11/51fc_93_35_f58ebf3962248eb.jpg" border="0" alt="" width="400" /></a></span></p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/media-wrong-version.html" title="WIN7下Media Player版本不对问题">WIN7下Media Player版本不对问题</a> (21)<br /><small>上次阿士在WPG论坛分享过系统图标来着，这套图标确实很漂亮不过我只有32位版本的，64位的就没有了。...</small></li><li><a href="http://ashi.im/article/speed-up-win7.html" title="加速WIN7,缩短响应时间">加速WIN7,缩短响应时间</a> (54)<br /><small>阿士用WIN7的时候经常遇到"程序未响应"这种情况，然后就要等它自动响应起来，特别是最近packer...</small></li><li><a href="http://ashi.im/article/win7-psd-patch.html" title="WIN7下的PSD缩略图补丁">WIN7下的PSD缩略图补丁</a> (52)<br /><small>哇哈哈，渐渐发现WIN7有很多不兼容的地方，也发现有很多地方微软做的确实不细心。上次阿士推介给大家G...</small></li><li><a href="http://ashi.im/article/xp-to-win7.html" title="XP变WIN7，界面仿真">XP变WIN7，界面仿真</a> (36)<br /><small>话说这两天阿士都在鼓捣着Firefox呢，之前的版本太低了，没更新，所以删除了。重新下载后发现好多插...</small></li><li><a href="http://ashi.im/article/image-viewer-for-win7.html" title="WIN7下的GIF图片动态查看工具">WIN7下的GIF图片动态查看工具</a> (69)<br /><small>大家是否发现在WIN7下查看GIF文件都是用IE浏览器打开的？是不是觉得很不过瘾？想想在XP下的Wi...</small></li><li><a href="http://ashi.im/article/glassnotes.html" title="WIN7可用透明记事本Glassnotes">WIN7可用透明记事本Glassnotes</a> (64)<br /><small>这款漂亮而且实用的记事本确实很养眼啊，在WIN7和Vista下的透明效果让人爱不释手。
**仅支持...</small></li><li><a href="http://ashi.im/article/watch-tv-with-media.html" title="windows media可用600+的电视台">windows media可用600+的电视台</a> (20)<br /><small>个人觉得WIN7下的media player加上WIN7codes解码包不差于任何的播放器，我觉得微...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/ie-never-change.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>金士顿SK6281/6211量产三盘启动全程图解。</title>
		<link>http://ashi.im/article/kingston-sk6281-6211.html</link>
		<comments>http://ashi.im/article/kingston-sk6281-6211.html#comments</comments>
		<pubDate>Wed, 28 Oct 2009 02:12:26 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[U盘]]></category>
		<category><![CDATA[图解]]></category>
		<category><![CDATA[量产]]></category>
		<category><![CDATA[金士顿]]></category>

		<guid isPermaLink="false">http://ashi.im/?p=926</guid>
		<description><![CDATA[金士顿U盘挺不错的，阿士也有一个2G的，是一位朋友送给我的，很感谢她。我的这个有加密，是金士顿厂家自带的，有时也觉得麻烦，不过加密了总没错吧。今天这篇文章时本人转自<a href="http://www.ylmf.net/read.php?tid=1421998&#38;fpage=0&#38;page=1" target="_blank">雨林木风</a>的，希望对需要量产的朋友有帮助。 
由于时间过于仓促，不能给大家们以详细的叙述整个过程，还请见谅。
碰到很多的帖子都是关于SK6281/6211量产错误，不成功等诸多问题，所以出了此贴，希望对朋友门有帮助
如果碰到问题请大家留言......<p class='alignright'><a href='http://ashi.im/article/kingston-sk6281-6211.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>金士顿U盘挺不错的，阿士也有一个2G的，是一位朋友送给我的，很感谢她。我的这个有加密，是金士顿厂家自带的，有时也觉得麻烦，不过加密了总没错吧。今天这篇文章时本人转自<a href="http://www.ylmf.net/read.php?tid=1421998&amp;fpage=0&amp;page=1" target="_blank">雨林木风</a>的，希望对需要量产的朋友有帮助。 </p>
<p>由于时间过于仓促，不能给大家们以详细的叙述整个过程，还请见谅。<br />
碰到很多的帖子都是关于SK6281/6211量产错误，不成功等诸多问题，所以出了此贴，希望对朋友门有帮助<br />
如果碰到问题请大家留言即可，如果有时间我一定给大家写个量产和如何处理量产问题的心的。你我共同进步是我不变的理想，相信也是YL不变的理念！      </p>
<p style="text-align: center;"><span style="font-family: 黑体;"><span style="COLOR: #ff0000"><strong><span style="font-size: medium;">点击图片即可放大</span></strong></span></span> </p>
<p> <span style="font-size: medium;"><span style="font-family: 黑体;"><span style="COLOR: #ff0000"><strong>量产工具附G2文件配置版</strong></span></span></span></p>
<blockquote><p><a id="url_1" onclick="return checkUrl(this)" href="http://www.dbank.com/download.action?k=ac011be856124293a45b776e32b3a0e4" target="_blank">金士顿擎泰U盘量产工具SK6211_20090227_BA.rar-G2</a><br />
<a id="url_2" onclick="return checkUrl(this)" href="http://www.dbank.com/download.action?k=3196da7c14aa4d2eb0143db3eb019a07" target="_blank">SK6211_20090227_BA.rar</a></p></blockquote>
<table style="text-align: center; border-left: #55c8ff 1px solid; width: 98%; border-top: #55c8ff 1px solid;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="text-align: center;"><span id="att_1698039"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/ba52_344_1595042_eff6e6524ccd0a8.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/ba52_344_1595042_eff6e6524ccd0a8.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/ba52_344_1595042_eff6e6524ccd0a8.jpg" alt="" width="500" /></a></span><br />
<span id="att_1698040"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/465a_344_1595042_cd1c63f6eb2ec07.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/465a_344_1595042_cd1c63f6eb2ec07.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/465a_344_1595042_cd1c63f6eb2ec07.jpg" border="0" alt="" width="500" height="171" /></a></span><br />
<span id="att_1698041"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/cea4_344_1595042_7f5d6fe1a534f2e.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/cea4_344_1595042_7f5d6fe1a534f2e.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/cea4_344_1595042_7f5d6fe1a534f2e.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698042"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/c8a3_344_1595042_d4f54d68f2db561.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/c8a3_344_1595042_d4f54d68f2db561.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/c8a3_344_1595042_d4f54d68f2db561.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698043"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/c9ea_344_1595042_900fc8593db4a38.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/c9ea_344_1595042_900fc8593db4a38.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/c9ea_344_1595042_900fc8593db4a38.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698044"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/c86a_344_1595042_6390d2d7a09b4aa.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/c86a_344_1595042_6390d2d7a09b4aa.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/c86a_344_1595042_6390d2d7a09b4aa.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698045"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/a139_344_1595042_906ed365c9ae9bb.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/a139_344_1595042_906ed365c9ae9bb.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/a139_344_1595042_906ed365c9ae9bb.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698046"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/23da_344_1595042_7b8a06b57b8d213.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/23da_344_1595042_7b8a06b57b8d213.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/23da_344_1595042_7b8a06b57b8d213.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698047"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/4794_344_1595042_f24a7635e80d188.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/4794_344_1595042_f24a7635e80d188.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/4794_344_1595042_f24a7635e80d188.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698048"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/5ffd_344_1595042_a85a323be1a607f.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/5ffd_344_1595042_a85a323be1a607f.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/5ffd_344_1595042_a85a323be1a607f.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698049"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/7c2a_344_1595042_65b67e5752d0e05.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/7c2a_344_1595042_65b67e5752d0e05.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/7c2a_344_1595042_65b67e5752d0e05.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698050"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/6a40_344_1595042_c072c15b7858a49.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/6a40_344_1595042_c072c15b7858a49.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/6a40_344_1595042_c072c15b7858a49.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698051"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/8a44_344_1595042_cc594a583c6efdd.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/8a44_344_1595042_cc594a583c6efdd.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/8a44_344_1595042_cc594a583c6efdd.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698052"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/c34b_344_1595042_8ebe6c23ff519af.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/c34b_344_1595042_8ebe6c23ff519af.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/c34b_344_1595042_8ebe6c23ff519af.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698053"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/b155_344_1595042_fd8707a40162a81.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/b155_344_1595042_fd8707a40162a81.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/b155_344_1595042_fd8707a40162a81.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698054"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/9a9f_344_1595042_e224417bd40edef.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/9a9f_344_1595042_e224417bd40edef.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/9a9f_344_1595042_e224417bd40edef.jpg" border="0" alt="" width="500" /></a></span><br />
<span id="att_1698055"><strong></strong><br />
<a href="http://ashi.im/wp-content/uploads/2009/10/1d34_344_1595042_0439c1b62dc400b.jpg" target="_blank"><img style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" onclick="if(this.width&gt;=700) window.open('http://ashi.im/wp-content/uploads/2009/10/1d34_344_1595042_0439c1b62dc400b.jpg');" src="http://ashi.im/wp-content/uploads/2009/10/1d34_344_1595042_0439c1b62dc400b.jpg" border="0" alt="" width="500" /></a></span></td>
</tr>
</tbody>
</table>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/gungraph.html" title="世界名枪高清图解 V1.0 绿色版">世界名枪高清图解 V1.0 绿色版</a> (2)<br /><small>软件大小: 3.30 MB
软件语言: 简体中文
软件类别: 国产软件 / 绿色版 / 其它书籍...</small></li><li><a href="http://ashi.im/article/udisk.html" title="U盘小偷(悄悄窃取MM靓照) V1.0 绿色版">U盘小偷(悄悄窃取MM靓照) V1.0 绿色版</a> (1)<br /><small>.......偷U盘的东西将变得这么容易....
MM来我这里，U盘里面有很多艳照，当着她的面不敢拷...</small></li><li><a href="http://ashi.im/article/diskrepair.html" title="万能U盘修复工具">万能U盘修复工具</a> (1)<br /><small>
软件类别：系统工具 - 磁盘工具 
软件大小：3.71 MB 
软件授权：免费软件 
软件语言：简...</small></li><li><a href="http://ashi.im/article/usbstart.html" title="推荐两款易用的USB启动盘制作工具：“USB启动盘制作向导”和“WinSetupFromUSB”">推荐两款易用的USB启动盘制作工具：“USB启动盘制作向导”和“WinSetupFromUSB”</a> (0)<br /><small>在大容量U盘(4G及其以上)已经成为市场主流产品的情况下，用U盘替代光驱、光盘安装操作系统已逐渐成为...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/kingston-sk6281-6211.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Windows 7旗舰版“激活密钥”以及“电话激活”方式图文详解</title>
		<link>http://ashi.im/article/win7-activate.html</link>
		<comments>http://ashi.im/article/win7-activate.html#comments</comments>
		<pubDate>Fri, 23 Oct 2009 20:14:27 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[WIN7]]></category>
		<category><![CDATA[激活]]></category>
		<category><![CDATA[激活密钥]]></category>

		<guid isPermaLink="false">http://ashi.im/?p=881</guid>
		<description><![CDATA[这篇文章是从<a href="http://hi.baidu.com/guoguo6688/blog/item/9432bf183179b1be4aedbc5d.html" target="_blank">翱翔</a>转来的，希望对安装WIN7旗舰版的朋友有帮助。
这个适用于Windows 7旗舰版的“激活密钥”，尽管“面世”不过五十来天时间，但是已经有过直接联网激活系统取得“正版权益”的辉煌战绩。就当笔者正在起草这篇文章的同时，恐怕不少人也正在用这个激活密钥“直接激活”或“电话激活”了Windows 7旗舰版。现提供这个曾被誉为“神key”的激活密钥以及“电话激活”方式图文详解如下——
   ......<p class='alignright'><a href='http://ashi.im/article/win7-activate.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>这篇文章是从<a href="http://hi.baidu.com/guoguo6688/blog/item/9432bf183179b1be4aedbc5d.html" target="_blank">翱翔</a>转来的，希望对安装WIN7旗舰版的朋友有帮助。</p>
<p>这个适用于Windows 7旗舰版的“激活密钥”，尽管“面世”不过五十来天时间，但是已经有过直接联网激活系统取得“正版权益”的辉煌战绩。就当笔者正在起草这篇文章的同时，恐怕不少人也正在用这个激活密钥“直接激活”或“电话激活”了Windows 7旗舰版。现提供这个曾被誉为“神key”的激活密钥以及“电话激活”方式图文详解如下——</p>
<p><span style="font-family: 宋体; color: #00ff00; font-size: small;">    <span style="color: #ffff00;">TFP9Y-VCY3P-VVH3T-8XXCC-MF4YK</span></span></p>
<p><span style="font-family: 宋体; color: #00ff00; font-size: small;">    安装Windows 7旗舰版之后，在确保网络畅通的前提下执行以下操作：鼠标右键 / “计算机”属性 /“更改产品密钥” / 键入以上“激活密钥”，经微软“激活服务器”联网验证，最终结果无外乎是两个：其一，十分幸运地通过了“微软正版密钥验证”直接激活了操作系统，仅需“一键”之劳就此大功告成！其二，会跳出第一幅界面：即便如此，只要具有基本的“耐心”和“细致”，成功激活仍然胜券在握胜利就在眼前——</span></p>
<p style="text-align: center;"><span style="font-family: 宋体; color: #00ff00; font-size: small;"><span><span><a href="http://ashi.im/wp-content/uploads/2009/10/win7-1.jpg" target="_blank"><img class="aligncenter size-full wp-image-882" src="http://ashi.im/wp-content/uploads/2009/10/win7-1.jpg" alt="" width="712" height="594" /></a></span></span></span></p>
<p style="text-align: center;"><span style="font-family: 黑体; color: #ff0000; font-size: small;"><span><span><span><span><span><a href="http://ashi.im/wp-content/uploads/2009/10/win7-2.jpg" target="_blank"><img class="aligncenter size-full wp-image-883" src="http://ashi.im/wp-content/uploads/2009/10/win7-2.jpg" alt="" width="711" height="590" /></a></span></span></span></span></span></span></p>
<p style="text-align: center;"><span style="font-family: 黑体; color: #ff0000; font-size: small;"><span><span><span><span><span><a href="http://ashi.im/wp-content/uploads/2009/10/win7-3.jpg" target="_blank"><img class="aligncenter size-full wp-image-884" src="http://ashi.im/wp-content/uploads/2009/10/win7-3.jpg" alt="" width="712" height="592" /></a></span></span></span></span></span></span></p>
<p style="text-align: center;"><span style="font-family: 黑体; color: #ff0000; font-size: small;"><span><span><span><span><span><a href="http://ashi.im/wp-content/uploads/2009/10/win7-4.jpg" target="_blank"><img class="aligncenter size-full wp-image-885" src="http://ashi.im/wp-content/uploads/2009/10/win7-4.jpg" alt="" width="713" height="591" /></a></span></span></span></span></span></span></p>
<p><span style="font-family: 黑体; color: #ff0000; font-size: small;"><span><span><span><span><span>友情提示：</span></span></span></span></span></span></p>
<p><span style="font-family: 宋体; color: #00ff00; font-size: small;"><span><span><span><span><span>    按照电话提示，正确输入54位数字的“安装ID”后，微软“客服”也许会问你：</span></span></span></span></span></span><span style="font-family: 宋体; color: #00ff00; font-size: small;"><span><span><span><span><span><br />
    1)“是不是在同一台机器上重新安装系统？”——务必选“是”，即“1”；<br />
    2)“是不是已经卸载了前一个安装？”——务必选“是”，即“1”。<br />
    ——如果操作或回答错误，就不会顺利得到微软“客服”给你的48位数字的“激活ID”，并且会转接到人工线路(注：一旦转接，可能会是面临失败的“弯路”)。</span></span></span></span></span></span></p>
<p><span style="font-family: 黑体; color: #ff9900; font-size: small;"><span><span><span><span><span>简要评述：</span></span></span></span></span></span></p>
<p><span style="font-family: 宋体; color: #00ff00; font-size: small;"><span><span><span><span><span>    ——电话激活，其实就是“用户”和“微软”相互玩的一个“障眼法”：任何“用户”都明白这个密钥“来自何处”；“微软”更是对这个密钥了如指掌、烂记于心。彼此只不过心照不宣“演戏”并把戏演足演好罢了：“用户”为了尽快激活系统，“微软”为了扩大市场占有率。</span></span></span></span></span></span></p>
<p><span style="font-family: 宋体; color: #00ff00; font-size: small;"><span><span><span><span><span>    ——电话激活，就其激活效果而言，根本无法与“硬刷BIOS”的“永久激活”相提并论。微软通过系统更新或正版验证机制，对此进行“封杀”非常容易。至于“电话激活”能够坚持多久，那完全要看微软的市场战略和营销策略。具体说：就是对于Windows 7占有市场的自信心。</span></span></span></span></span></span></p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/share-3-activation-tool.html" title="分享3款WIN7激活工具">分享3款WIN7激活工具</a> (13)<br /><small>
一直以来阿士都不尝试去激活没有成熟激活的系统，当时激活VISTA时留下的教训。恩，今天啊，怎么说...</small></li><li><a href="http://ashi.im/article/windows-7-jihuo.html" title=" Windows 7激活工具1.1（阿非YY版)"> Windows 7激活工具1.1（阿非YY版)</a> (2)<br /><small>首先声明下，阿士并不提倡使用WIN7的激活工具，现在微软为大家提供可以免费试用一年的方法了，一年之内...</small></li><li><a href="http://ashi.im/article/win7-method-of-one-year-free.html" title="WIN7免费试用一年的方法">WIN7免费试用一年的方法</a> (7)<br /><small>今天看到海天的评论了，WIN7激活的确是一块心病啊，不过阿士还是不建议用软件、电话什么激活，如果大家...</small></li><li><a href="http://ashi.im/article/media-wrong-version.html" title="WIN7下Media Player版本不对问题">WIN7下Media Player版本不对问题</a> (21)<br /><small>上次阿士在WPG论坛分享过系统图标来着，这套图标确实很漂亮不过我只有32位版本的，64位的就没有了。...</small></li><li><a href="http://ashi.im/article/speed-up-win7.html" title="加速WIN7,缩短响应时间">加速WIN7,缩短响应时间</a> (54)<br /><small>阿士用WIN7的时候经常遇到"程序未响应"这种情况，然后就要等它自动响应起来，特别是最近packer...</small></li><li><a href="http://ashi.im/article/win7-psd-patch.html" title="WIN7下的PSD缩略图补丁">WIN7下的PSD缩略图补丁</a> (52)<br /><small>哇哈哈，渐渐发现WIN7有很多不兼容的地方，也发现有很多地方微软做的确实不细心。上次阿士推介给大家G...</small></li><li><a href="http://ashi.im/article/xp-to-win7.html" title="XP变WIN7，界面仿真">XP变WIN7，界面仿真</a> (36)<br /><small>话说这两天阿士都在鼓捣着Firefox呢，之前的版本太低了，没更新，所以删除了。重新下载后发现好多插...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/win7-activate.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>关闭wordpress的文章修订版本及自动保存功能</title>
		<link>http://ashi.im/article/close-wp-antosave.html</link>
		<comments>http://ashi.im/article/close-wp-antosave.html#comments</comments>
		<pubDate>Mon, 28 Sep 2009 01:52:26 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[保存]]></category>
		<category><![CDATA[修订]]></category>
		<category><![CDATA[关闭]]></category>
		<category><![CDATA[自动]]></category>

		<guid isPermaLink="false">http://ashi.im/?p=818</guid>
		<description><![CDATA[ 今日打开自己的博客，发现一个小错误，然后回到后台修改了一下，再发布一下。无意当中，翻看到编辑页面的底部，看到了本文章的许多修订版本，认真看了看，发现它也像Windwos的系统还原一样，可以还原到以前的版本去(但它没有人家的那个关闭开关)，自己觉得没有必要，也搞明白了为什么以前发布文章时文章的ID不连续的原因。于是在网上搜索了一下，发现许多人也遇到了这样的问题，实践了一下，整理了一下，提供给大家分......<p class='alignright'><a href='http://ashi.im/article/close-wp-antosave.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p> 今日打开自己的博客，发现一个小错误，然后回到后台修改了一下，再发布一下。无意当中，翻看到编辑页面的底部，看到了本文章的许多修订版本，认真看了看，发现它也像Windwos的系统还原一样，可以还原到以前的版本去(但它没有人家的那个关闭开关)，自己觉得没有必要，也搞明白了为什么以前发布文章时文章的ID不连续的原因。于是在网上搜索了一下，发现许多人也遇到了这样的问题，实践了一下，整理了一下，提供给大家分享（在wordpress2.7.1、2.8、2.8.4版本下通过）。</p>
<p>关闭wordpress的文章修订版本功能</p>
<p>方法一：修改wp-config.php 文件</p>
<p>（程序文件的编辑，请使用专业的编辑器如 EmEditor 来编辑，不要使用记事本之类的，容易出现首页版面偏左、WLW打开出错的问题，以及其他隐藏错误，这是我的教训，切记切记）</p>
<p>      编辑wordpress的安装目录下的 wp-config.php 文件，在下面文字之后（基本上快在最后了）：</p>
<p>/** 设置WordPress变量和包含文件。 */     (<span style="color: #800080;"> 或 /** Sets up WordPress vars and included files. */ </span>)</p>
<p>      添加以下代码：</p>
<p><span style="color: #ff0000;">define(&#8216;WP_POST_REVISIONS&#8217;,&#8217;0&#8242;);</span></p>
<p>      上述代码是屏蔽掉“Revision”，有几个参数可选，根据实际需要修改（蓝色部分，本处就是指的0）：<br />
                   true（默认）或者 -1：保存所有修订版本<br />
false 或者 0：不保存任何版本（除了自动保存的版本）<br />
大于 0的整数 n：保存 n 个修订版本（+1 只保存自动保存版本），旧的版本将被删除。<br />
      具体说明请查看官方的说明文档“<a href="http://codex.wordpress.org/Revision_Management" target="_blank">Revision Management</a>”<br />
      此方法的不足在于，wordpress主程序升级后，需要重新设置（也许今后会增加这么一个开关按钮，没现在这么麻烦）。</p>
<p>方法二：使用插件法</p>
<p>      使用的插件就是： <a href="http://exper.3drecursions.com/wp/disable-revisions.zip" target="_blank">disable-revisions</a>，方法很简单，进入后台激活即可，不需要再设置什么，因此不再罗嗦。</p>
<p>清除数据库中的修订版</p>
<p>     <span style="color: #ff0000;"> 安全起见，操作前请先备份数据！</span></p>
<p>      方法一：使用WP Cleaner插件来完成1.下载插件 WP Cleaner（<a href="http://www.lesishu.cn/wp-content/uploads/wpcleaner_10.zip" target="_blank">点击下载</a>，或<a href="http://www.jiangmiao.org/blog/138.html" target="_blank">访问插件主页</a>）<br />
2.将下载的文件解压后上传到博客 wp-content/plugins/ 目录下<br />
3.在后台的“插件”项中启用<br />
4.点击“设置”即可看到“WP Cleaner”项<br />
5.按提示删除修订版。</p>
<p> </p>
<p>      方法二：手动清除数据库中的修订版</p>
<p>      首先登录你的cPanel——&gt;数据库——&gt;phpMyAdmin——SQL，然后输入以下 SQL 语句点执行即可把所有的Post Revision清除：</p>
<p><span style="color: #ff0000;">DELETE FROM wp_posts WHERE post_type = &#8220;revision&#8221;;</span></p>
<p>      此方法高效而且无副作用，当然对于不熟悉sql语句的朋友可要谨慎使用了，不小心输错语句那可是相当危险的（注意这里的wp_什么表示数据库前缀，如果你修改了默认的wp前缀，则需要改为你自己的，否则会报告没找到）；不过不用怕，这里还有一个简单明了的方法，免去你的担忧。</p>
<p>      1.打开你的wordpress数据库，展开表 wp_posts（注意这里的wp_什么表示数据库前缀，如果你修改了默认的wp前缀，则查看你自己的xxx_posts），点击左上角的浏览，这表里包含的数据有page（页面）、post（文章）、revision（修订）；<br />
      2.点击“post_type”子键进行分类排序，把所有显示“revision”的ID都勾选上（可能有多页，需要不断的重复），看清楚来，是键值为“revision”的才勾哟；<br />
      3.然后点删除。大功告成！新的和旧的“revision”都拜拜了。</p>
<p> <a href="http://ashi.im/wp-content/uploads/2009/09/07.gif"><img class="aligncenter size-full wp-image-819" title="07" src="http://ashi.im/wp-content/uploads/2009/09/07.gif" alt="07" width="430" height="350" /></a><br />
关闭wordpress的自动保存功能</p>
<p>      编辑wordpress的安装目录下的 wp-config.php 文件，在下面文字之后（基本上快在最后了）：</p>
<p>/** 设置WordPress变量和包含文件。 */     ( <span style="color: #800080;">或 /** Sets up WordPress vars and included files. */ </span>)</p>
<p>      添加以下代码：</p>
<p><span style="color: #ff0000;">define(&#8216;AUTOSAVE_INTERVAL&#8217;, &#8217;3600&#8242;);</span></p>
<p>      上述代码会将自动保存时间间隔改为3600秒，即60分钟。</p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/autopic.html" title="为FCK编辑器增加远程图片自动保存功能">为FCK编辑器增加远程图片自动保存功能</a> (4)<br /><small>希望大家以后多多支持我的博客就是了。呵呵......

1.将remoteupload目录上传到...</small></li><li><a href="http://ashi.im/article/wordpress-thumb.html" title="给你的wordpress文章添加缩略图">给你的wordpress文章添加缩略图</a> (31)<br /><small>&nbsp;
&nbsp;
创建日志缩略图我想很多wper都有用过这个方法，很多主题都自带这个功...</small></li><li><a href="http://ashi.im/article/wp-themes-trytogo.html" title="启动新主题TryToGo">启动新主题TryToGo</a> (33)<br /><small>启用新的主题了，自己改了好几天，不过貌似还有BUG，IE下(我的是IE8)侧边栏有问题,IE6和IE...</small></li><li><a href="http://ashi.im/article/wordpress-301.html" title="wordpress 301重定向问题">wordpress 301重定向问题</a> (23)<br /><small>要实现的是从原来的域名ssslove.com/***.html访问的时候，通过301跳转到ashi....</small></li><li><a href="http://ashi.im/article/upgrade-wordpress.html" title="升级wordpress 2.9了">升级wordpress 2.9了</a> (51)<br /><small>今天回来了，顺便升级了一下wordpress，现在2.9了。由于我的wordpress下载、升级插件...</small></li><li><a href="http://ashi.im/article/it-is-wrong.html" title="好像出错了">好像出错了</a> (22)<br /><small>这两天有点事情没的更新，今天想趁有点时间弄下博客，可是...

安装“小墙”好像不能用的，自己发...</small></li><li><a href="http://ashi.im/article/changeskin.html" title="博客更换下皮肤">博客更换下皮肤</a> (4)<br /><small>恩，皮肤用久了大家可能觉得没什么，但是自己觉得有点疲劳了，所以今天上网找了一个皮肤。这个皮肤看着还行...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/close-wp-antosave.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>大蜘蛛5.0标准版注册激活送豪礼</title>
		<link>http://ashi.im/article/dr-web-anti-virus.html</link>
		<comments>http://ashi.im/article/dr-web-anti-virus.html#comments</comments>
		<pubDate>Sun, 27 Sep 2009 08:21:12 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[免费]]></category>
		<category><![CDATA[大蜘蛛]]></category>
		<category><![CDATA[杀毒软件]]></category>
		<category><![CDATA[注册码]]></category>
		<category><![CDATA[病毒]]></category>

		<guid isPermaLink="false">http://ashi.im/?p=790</guid>
		<description><![CDATA[来自俄罗斯的大蜘蛛听过的朋友应该越来越多了，面对现在的众多杀毒软件你是不是无从选择？那么试试阿士推荐的这款吧。推荐的理由很多，不一一陈述，大家可以去他的<a href="http://www.drweb.com.cn/other/frdrweb.aspx?id=ssslove" target="_blank">网站</a>看看。无论什么理由对于我们来说：免费、赠送&#8230;&#8230;带这些字眼的一般都算好消息，对吧。(*^__^*)

<li>1、俄罗斯国防部17年唯一指定使用的反病毒软件</li>
<li>2、Anti-Malware Test Lab特别为大蜘蛛颁发铂金奖章</li>
......<p class='alignright'><a href='http://ashi.im/article/dr-web-anti-virus.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>来自俄罗斯的大蜘蛛听过的朋友应该越来越多了，面对现在的众多杀毒软件你是不是无从选择？那么试试阿士推荐的这款吧。推荐的理由很多，不一一陈述，大家可以去他的<a href="http://www.drweb.com.cn/other/frdrweb.aspx?id=ssslove" target="_blank">网站</a>看看。无论什么理由对于我们来说：免费、赠送&#8230;&#8230;带这些字眼的一般都算好消息，对吧。(*^__^*)</p>
<blockquote>
<li>1、俄罗斯国防部17年唯一指定使用的反病毒软件</li>
<li>2、Anti-Malware Test Lab特别为大蜘蛛颁发铂金奖章</li>
<li>3、高速扫描</li>
<li>4、操作简单</li>
<li>5、资源占用小</li>
<li>6、独一无二的SelfProtect&#8211;自我保护</li>
<li>7、能够在已被感染的电脑上安装运行以及超强的抗病毒能力使Dr.Web在所有同类产品中独树一帜</li>
</blockquote>
<p>更何况不止送注册码那么简单哦&#8230;&#8230;</p>
<p><strong>推广送好礼</strong></p>
<blockquote><p><strong>活动时间：</strong>2009年9月1日——2009年12月31日</p>
<p><strong><br />
活动细则：</strong><br />
　　1、 凡参与此活动的用户，均可登录活动页面填写相关信息进行注册，申请一条推广链接。<br />
　　2、 通过此链接推广给身边及周围人群，大力发展用户。<br />
　　3、 每位通过个人专属推广链接完成序列号的申请，即视为成功有效推广。<br />
　　4、 推广人可随时登陆活动页面查询有效推广信息。</p>
<p><strong><br />
作弊处理：</strong></p>
<p>　　 此次活动，如有作弊行为者，将公布该账号作弊的具体情况，并一律清空其所有积分。本活动最终解释权归道特韦伯（北京）信息技术有限公司所有。</p>
<p><strong><br />
官方声明：</strong></p>
<p>　　 道特韦伯（北京）信息技术有限公司为了大力推广实用、好用的俄罗斯顶级杀毒软件，给喜欢大蜘蛛的用户提供了各种获奖得礼的机会，希望大家能和大蜘蛛一起做好这样的活动，同时也希望大家获得礼品的机会是均等的。<br />
　　<span>特殊申明：由于微软公司的windows 7 上市日期预计在2009年10月底，所以前两期的获奖者将在11月初统一发放。在发放前，我公司将会把获奖名单公布在的官方论坛上。敬请关注。<br />
　　在每个自然月的31号（如遇法定节假日，顺延），我公司可能会更换等值的礼品作为下个月的发放奖励，敬请关注。2009年10月31日之前的奖励计划将不会更改。</span><br />
　　此次活动由道特韦伯（北京）信息技术有限公司承办，最终解释权归道特韦伯（北京）信息技术有限公司所有。</p></blockquote>
<p>其他不多说了，大家快去看看吧。     <a href="http://www.drweb.com.cn/other/frdrweb.aspx?id=ssslove" target="_blank">大蜘蛛5.0标准版活动官网</a></p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/msn-kaba.html" title="MSN – 免费领取卡巴斯基反病毒软件2010半年激活码">MSN – 免费领取卡巴斯基反病毒软件2010半年激活码</a> (1)<br /><small>MSN联合著名杀毒软件卡巴斯基推出的免费活动，MSN用户免费领取卡巴斯基反病毒软件2010半年激活码...</small></li><li><a href="http://ashi.im/article/free-sms.html" title="分享一个免费发短信的地方">分享一个免费发短信的地方</a> (66)<br /><small>用手机或者电脑登陆，就可以免费发送短信。阿士测试了，移动的号码可以，我有一个天翼的号码，但是没收到短...</small></li><li><a href="http://ashi.im/article/99pan.html" title="免费的网络硬盘-99盘">免费的网络硬盘-99盘</a> (5)<br /><small>上几天在某个论坛上看到一个帖子：禁止发布99盘下载的帖子！那时候虽然好奇，但没有多留心。今天看到一个...</small></li><li><a href="http://ashi.im/article/win7-method-of-one-year-free.html" title="WIN7免费试用一年的方法">WIN7免费试用一年的方法</a> (7)<br /><small>今天看到海天的评论了，WIN7激活的确是一块心病啊，不过阿士还是不建议用软件、电话什么激活，如果大家...</small></li><li><a href="http://ashi.im/article/sothink-swf-decompiler-5-2-registration-key-release-event-to-send-fresh-start.html" title="硕思闪客精灵5.2版发布 送注册码活动重新开始">硕思闪客精灵5.2版发布 送注册码活动重新开始</a> (3)<br /><small>很多网友都是Flash高手，对于那些精美的flash阿士也往往是赞叹不已，也很想学习下怎么制作和修改...</small></li><li><a href="http://ashi.im/article/qiannao.html" title="免费的网络硬盘—千脑">免费的网络硬盘—千脑</a> (2)<br /><small>提供下载的文件放在哪里好呢？这一直是困扰大家的问题所在。之前用过许多其他的，但最终决定用千脑，原因无...</small></li><li><a href="http://ashi.im/article/mywordpress.html" title="我的wordpress">我的wordpress</a> (0)<br /><small>申请了国外的一个免费空间，今天起开始我的wordpress之旅，要坚持！之前很想用wordpress...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/dr-web-anti-virus.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>2009年10.1国庆期间国内各邀请论坛开放注册时间汇总（27日更新）</title>
		<link>http://ashi.im/article/10-1-aggregate-hours.html</link>
		<comments>http://ashi.im/article/10-1-aggregate-hours.html#comments</comments>
		<pubDate>Sun, 27 Sep 2009 05:42:39 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[十一]]></category>
		<category><![CDATA[国庆]]></category>
		<category><![CDATA[时间]]></category>
		<category><![CDATA[注册]]></category>
		<category><![CDATA[论坛]]></category>

		<guid isPermaLink="false">http://ashi.im/?p=783</guid>
		<description><![CDATA[很多优秀的论坛在节假日期间都开发注册了，如果你对某些论坛垂涎已久的那，那么赶快吧。
2009年10.1国庆期间国内各邀请论坛开放注册时间汇总
开放篇：   
闪电联盟 10月1日-8日论坛不定时开放注册，每次开放5分钟&#8211;30分钟，打工插件工资调整到30DH（原15DH)             
<a href="http://www.3dch.net/read.php?tid-161859.html" target="_blank">http://www.3dch.net/read.php?tid-161859.html</a>
......<p class='alignright'><a href='http://ashi.im/article/10-1-aggregate-hours.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>很多优秀的论坛在节假日期间都开发注册了，如果你对某些论坛垂涎已久的那，那么赶快吧。</p>
<p><span style="font-family: 宋体;">2009年10.1国庆期间国内各邀请论坛开放注册时间汇总<br />
开放篇：   <br />
闪电联盟 10月1日-8日论坛不定时开放注册，每次开放5分钟&#8211;30分钟，打工插件工资调整到30DH（原15DH)             <br />
<a href="http://www.3dch.net/read.php?tid-161859.html" target="_blank">http://www.3dch.net/read.php?tid-161859.html</a><br />
黑客动画吧论坛 9月26日晚8点开放注册1个小时<br />
<a href="http://bbs.hack58.com/read.php?tid-232285.html" target="_blank">http://bbs.hack58.com/read.php?tid-232285.html</a><br />
男女夜话论坛　国庆期间开放注册(随时实行邀请注册)<br />
<a href="http://www.llyh8.cn/u.php?uid=2" target="_blank">http://www.llyh8.cn/u.php?uid=2</a><br />
比特论坛&#8212;-2009年9月30日开放注册，截止时间暂时不作限制<br />
<a href="http://bbs.abcbit.com/viewthread.php?tid=240922&amp;extra" target="_blank">http://bbs.abcbit.com/viewthread.php?tid=240922&amp;extra</a>=<br />
启越论坛10月1日—10月3日开放注册3天<br />
<a href="http://www.dreamsdown.com/read.php?tid-54279.html" target="_blank">http://www.dreamsdown.com/read.php?tid-54279.html</a><br />
飞扬社区2009年10月1日国庆开放注册一天<br />
<a href="http://www.0xy.cn/read.php?tid=149668" target="_blank">http://www.0xy.cn/read.php?tid=149668</a><br />
秋无痕论坛10月1日开放注册一天<br />
<a href="http://bbs.realqwh.cn/notice.php" target="_blank">http://bbs.realqwh.cn/notice.php</a><br />
完美者精品论坛将于9月30号开放 时间晚上8～9点<br />
<a href="http://bbs.wmzhe.com/announcement.php" target="_blank">http://bbs.wmzhe.com/announcement.php</a>?<br />
桌面天下美化社区-论坛将于10月1日开放注册一天(0:00-24:00)<br />
<a href="http://www.desktx.com/bbs/thread-157014-1-1.html" target="_blank">http://www.desktx.com/bbs/thread-157014-1-1.html</a><br />
圣城家园2009年9月26日开放注册1天<br />
<a href="http://www.dream2008.cn/" target="_blank">http://www.dream2008.cn/</a><br />
网络生活网10月1-8日开放注册8一天<br />
<a href="http://www.wlshw.com" target="_blank">http://www.wlshw.com</a>  <br />
中国站长-国庆60周年到来之即，论坛开放注册以及开放邀请注册<br />
<a href="http://www.cnwebmasters.com/thread-27129-1-1.html" target="_blank">http://www.cnwebmasters.com/thread-27129-1-1.html</a><br />
自由之翼论坛国庆节期间开放注册(2009年9月30日晚19：00开始)<br />
<a href="http://bbs.cniso.org/bbs/viewthread.php?tid=63309" target="_blank">http://bbs.cniso.org/bbs/viewthread.php?tid=63309</a><br />
  <br />
PTShow即日起开放注册(关闭时间：2009-09-30 24:00)<br />
10月1日早上9点开放为期8天的全站种子免费下载的后续活动<br />
<a href="http://www.ptshow.net/login.php" target="_blank">http://www.ptshow.net/login.php</a><br />
  <br />
牧羊人论坛迎国庆，论坛10月1日开放注册一天<br />
<a href="http://bbs.m-12.cn/announcement.php" target="_blank">http://bbs.m-12.cn/announcement.php</a>?<br />
捌零音乐论坛将于10月1日至10月8日开放注册！<br />
<a href="http://www.pt80.com/announcement.php" target="_blank">http://www.pt80.com/announcement.php</a><br />
厦门小鱼网开放绿色注册通道(9月16日-10月1日)，<br />
<a href="http://www.xmfish.com/" target="_blank">http://www.xmfish.com/</a><br />
踢楼篇：        <br />
   <br />
闪电联盟喜迎国庆中秋T楼9月30日21：00（知名论坛推荐、电话卡、Q币卡等）<br />
<a href="http://www.3dch.net/read.php?tid-164374.html" target="_blank">http://www.3dch.net/read.php?tid-164374.html</a><br />
  <br />
华彩交易区（2009年9月30日 21：30 ）   <br />
   <br />
东方国庆大型踢楼预告地主级别会员<br />
  <br />
华夏 口号征集中。<br />
  <br />
浩海中国技术论坛：庆祝国庆，欢度中秋大型T楼 (十月一日18时18分)<br />
<a href="http://bbs.hhghost.com/read.php?tid=157028" target="_blank">http://bbs.hhghost.com/read.php?tid=157028</a>&amp;<br />
深雁技术论坛2009年10月2日20:00点<br />
<a href="http://www.indeep.cn/read.php?tid=116568" target="_blank">http://www.indeep.cn/read.php?tid=116568</a><br />
活动篇：<br />
fit国庆献礼论坛巡展活动（9月1~9月30）  所有参数作品统一奖励论坛币50。<br />
<a href="http://www.fitbbs.com/read.php?tid=212581" target="_blank">http://www.fitbbs.com/read.php?tid=212581</a><br />
闪电联盟论坛 &#8211; 国庆八天乐，天天都惊喜；论坛不定时发放在线红包和跟帖红包，敬请多多关注！ 。。。。。。。<br />
10月1日当天，论坛水区回帖恢复到1DH；  10月1日-8日，打工插件工资调整到30DH（原15DH）！<br />
<a href="http://www.3dch.net/read.php?tid-161859.html" target="_blank">http://www.3dch.net/read.php?tid-161859.html</a><br />
华彩联盟论坛 &#8211; 欢度国庆六利多！<br />
10月1日-8日不定时发放超大在线红包、调整CB兑换华魂为4：1 。。。。。。<br />
<a href="http://bbs.huacolor.com/read.php?tid-267561.html" target="_blank">http://bbs.huacolor.com/read.php?tid-267561.html</a><br />
启越币兑换威望比例调整为8：1，全天均有不定时在线红包、回帖领取红包（还有QFB奖励哦）。。。。。。。<br />
<a href="http://www.dreamsdown.com/read.php?tid-54279.html" target="_blank">http://www.dreamsdown.com/read.php?tid-54279.html</a><br />
  <br />
秋无痕论坛国庆节日期间活动安排   <br />
10月1日—4日：WHB兑换威望比例调整为3：1 ；无痕茶座有不定时不定量跟帖在线红包发放；每日签到的红包加倍（重在威望）。。。。。<br />
<a href="http://bbs.realqwh.cn/read-htm-tid-104371.html" target="_blank">http://bbs.realqwh.cn/read-htm-tid-104371.html</a><br />
飞扬社区关于国庆恢复威望4：1,国庆假期，同时打工也实行双倍<br />
<a href="http://www.0xy.cn/read.php?tid=153746" target="_blank">http://www.0xy.cn/read.php?tid=153746</a><br />
教育手拉手：天上人间，花好月圆——2009年中秋祝福<br />
2009年9月17日&#8211;10月3日 (12-18金币)<br />
<a href="http://www.jysls.com/thread-643004-1-1.html" target="_blank">http://www.jysls.com/thread-643004-1-1.html</a><br />
  <br />
火柴天堂庆祝国庆留下您对祖国的祝福！每个ID限回复一次，字数不少于10个汉字，每个奖励天堂币60，截止日期：10月1号23点59分。<br />
<a href="http://bbs.matchtt.com/read-htm-tid-391993-toread-1.html" target="_blank">http://bbs.matchtt.com/read-htm-tid-391993-toread-1.html</a><br />
系统之家“迎中秋、庆国庆”活动<br />
<a href="http://www.xtzj.com/read-htm-tid-432381-1-1.html" target="_blank">http://www.xtzj.com/read-htm-tid-432381-1-1.html</a><br />
印心IT论坛：国庆六十周年活动寄语<br />
<a href="http://bbs.234.aa.topzj.com/thread-501630-1-1.html" target="_blank">http://bbs.234.aa.topzj.com/thread-501630-1-1.html</a><br />
华军软件园论坛：征集国庆祝福语、领取勋章<br />
<a href="http://bbs.newhua.com/thread-111469-1-1.html" target="_blank">http://bbs.newhua.com/thread-111469-1-1.html</a><br />
黑吧安全网国庆60周年征文活动 （截稿时间为10月1日24时）<br />
<a href="http://bbs.hack58.com/read.php?tid-232294.html" target="_blank">http://bbs.hack58.com/read.php?tid-232294.html</a><br />
IT世界论坛国庆60周年庆典大型盖楼活动，奖品丰富(9.24-10.8)<br />
<a href="http://bbs.it.com.cn/viewthread.php?tid=464404" target="_blank">http://bbs.it.com.cn/viewthread.php?tid=464404</a><br />
  <br />
华夏黑客联盟交易区活动(十月一日零点至八日二十四点) :累计交易额排名前三的会员将奖励相应的元宝和威望。<br />
<a href="http://www.hxhack.com/bbs/read.php?tid-301334.html" target="_blank">http://www.hxhack.com/bbs/read.php?tid-301334.html</a></span></p>
<p><span style="font-family: 宋体;"><span style="color: #ff0000;">时光免费社区</span> &#8211; 庆祝祖国60华诞，展现辉煌留住精彩瞬间<br />
<a href="http://bbs.tuwow.cn/thread-18814-1-1.html" target="_blank">http://bbs.tuwow.cn/thread-18814-1-1.html</a></span></p>
<p><span style="font-family: 宋体;"><span style="color: #ff0000;">东方家园</span>娱乐区答题活动实行<span style="color: #0000ff;">双倍积分</span>奖励(9月26日&#8211;<span style="color: #0000ff;">10月10</span>日)<br />
<a href="http://www.dfjy.org/read-htm-tid-100841-page-e.html#a" target="_blank">http://www.dfjy.org/read-htm-tid-100841-page-e.html#a</a></span></p>
<p><span style="font-family: 宋体;"><span style="color: #ff0000;"><span onclick="tagshow(event)">龙族</span>联盟论坛</span>-水区国庆中秋双节活动预告<br />
<a href="http://www.chinadforce.com/viewthread.php?tid=1242659" target="_blank">http://www.chinadforce.com/viewthread.php?tid=1242659</a></span></p>
<p><span style="font-family: 宋体;"><span style="color: #ff0000;">小晓家园</span>-【祝寿】<span style="color: #0000ff;">10.01.</span>60 寿·庆·祝. 迎秋庆国 </span></p>
<p><span style="font-family: 宋体;"><a href="http://bbs.xxjy.org/read.php?tid=207120" target="_blank">http://bbs.xxjy.org/read.php?tid=207120</a></span></p>
<p><span style="font-family: 宋体;"><span style="color: #ff0000;">红软基地论坛</span>2009祝福祖国母亲甲子生日（<span style="color: #0000ff;">在线红包</span>、博彩区、交易区。。。） <span style="font-size: 0px;">3 j3 f$ `# S! n</span><br />
<a href="http://bbs.rsdown.cn/read.php?tid=181989" target="_blank">http://bbs.rsdown.cn/read.php?tid=181989</a></span></p>
<p><span style="font-family: 宋体;">我的中国心——<span style="color: #ff0000;">雨<span onclick="tagshow(event)">林木</span>风</span>论坛<span style="color: #0000ff;">娱乐区</span>共贺国庆中秋<br />
<a href="http://www.ylmf.net/read.php?tid=1407778" target="_blank">http://www.ylmf.net/read.php?tid=1407778</a> <span style="font-size: 0px;"># k0 @4 k: l&#8217; k- s; b&#8217; f; R1 J) A&#8221; [</span><br />
</span></p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/lockdir.html" title="便携式文件夹加密器5.43+注册信息">便携式文件夹加密器5.43+注册信息</a> (2)<br /><small>这个软件阿士现在在用，电脑里有一些东西如果不愿意让别人看到，那么加密的方法有很多，这个工具的使用是比...</small></li><li><a href="http://ashi.im/article/drinking-drunk-last-night.html" title="昨晚喝酒醉了">昨晚喝酒醉了</a> (7)<br /><small>       昨天晚饭没吃想等晚上吃点心，后来被同学叫去喝酒了。本人酒量本来就不高，要色子技术也不行...</small></li><li><a href="http://ashi.im/article/guoqingqingdianyanlian.html" title="国庆庆典演练开始了">国庆庆典演练开始了</a> (0)<br /><small>终于60周年了,不得不感慨一下啊。

根据国庆60周年庆典活动总体安排，北京市国庆筹委会从今日开始到...</small></li><li><a href="http://ashi.im/article/domainfieryregister.html" title="域名火热注册中">域名火热注册中</a> (0)<br /><small>看到标题是不是有人认为阿士在这里打广告了呢？其实没有啦，大家看下去就知道了。
看最近互联网上域名价...</small></li><li><a href="http://ashi.im/article/polarclock.html" title="PolarClock:太阳钟时间屏保">PolarClock:太阳钟时间屏保</a> (0)<br /><small>用时间做屏保的方式很多， 但这个太阳钟却会让你呆呆地看着屏幕体验时间如何流逝。
如果需要，就下载吧。...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/10-1-aggregate-hours.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何解决Alexa工具条在IE下无法显示的问题</title>
		<link>http://ashi.im/article/alexadisapper.html</link>
		<comments>http://ashi.im/article/alexadisapper.html#comments</comments>
		<pubDate>Tue, 01 Sep 2009 17:36:08 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[Alexa]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[工具条]]></category>
		<category><![CDATA[注册表]]></category>

		<guid isPermaLink="false">http://www.flisy.cn/article/%e5%a6%82%e4%bd%95%e8%a7%a3%e5%86%b3alexa%e5%b7%a5%e5%85%b7%e6%9d%a1%e5%9c%a8ie%e4%b8%8b%e6%97%a0%e6%b3%95%e6%98%be%e7%a4%ba%e7%9a%84%e9%97%ae%e9%a2%98.html</guid>
		<description><![CDATA[Alexa工具条相信有弄网站的人都了解，我最近也安装了这个工具条。但令人郁闷的是很多杀毒软件把它列入黑名单中了。我最近用<a target="_blank" href="http://ashi.im/article/msn-kaba.html">卡巴</a>还好，弹出提示时直接加入信任里就行了。但是今天早上遇到点问题了：IE下这个工具条跟我玩起了消失。囧!
     网上搜寻解决办法，重装了还不行。其实有很简单的方法，现在公布下也备忘。
   其实归根到底是因为注册表的关系。把以下代码放入文本中，改后缀为reg，然后运行添加到注......<p class='alignright'><a href='http://ashi.im/article/alexadisapper.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>Alexa工具条相信有弄网站的人都了解，我最近也安装了这个工具条。但令人郁闷的是很多杀毒软件把它列入黑名单中了。我最近用<a target="_blank" href="http://ashi.im/article/msn-kaba.html">卡巴</a>还好，弹出提示时直接加入信任里就行了。但是今天早上遇到点问题了：IE下这个工具条跟我玩起了消失。囧!<br />
     网上搜寻解决办法，重装了还不行。其实有很简单的方法，现在公布下也备忘。<br />
   其实归根到底是因为注册表的关系。把以下代码放入文本中，改后缀为reg，然后运行添加到注册表中，搞定！<br />
[code]Windows Registry Editor Version 5.00<br />
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{69A72A8A-84ED-4a75-8CE7-263DBEF3E5D3}][/code]</p>
<p>大家有兴趣去试试这个： http://ashi.im/alexa</p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/ie-never-change.html" title="教你IE主页永不被篡改的方法">教你IE主页永不被篡改的方法</a> (6)<br /><small>还未安装WIN7的时候阿士遇到过一次最严重的主页篡改事件，网络上绝大部分的方法试过以后都不行。最后发...</small></li><li><a href="http://ashi.im/article/ie8-features-enhanced-drag-ie7pro.html" title="IE8功能增强-IE7pro-拖拽">IE8功能增强-IE7pro-拖拽</a> (2)<br /><small>最近装了WIN7系统系统自带的浏览器是IE8，虽然有很多浏览器可以选择但偶尔也会用到IE8，没有其他...</small></li><li><a href="http://ashi.im/links" title="友情链接">友情链接</a> (36)<br /><small>...</small></li><li><a href="http://ashi.im/article/iecachedraw.html" title="IE缓存文件提取器">IE缓存文件提取器</a> (0)<br /><small>软件名称：IE缓存文件提取器(本人花钱下载的，现在免费提供给大家)
软件大小：838KB
软件简介：...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/alexadisapper.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>“贫二代”怎么贫？</title>
		<link>http://ashi.im/article/qiongerdai.html</link>
		<comments>http://ashi.im/article/qiongerdai.html#comments</comments>
		<pubDate>Tue, 25 Aug 2009 07:01:53 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[石述思]]></category>
		<category><![CDATA[穷二代]]></category>
		<category><![CDATA[贫二代]]></category>

		<guid isPermaLink="false">http://www.flisy.cn/article/%e2%80%9c%e8%b4%ab%e4%ba%8c%e4%bb%a3%e2%80%9d%e6%80%8e%e4%b9%88%e8%b4%ab%ef%bc%9f.html</guid>
		<description><![CDATA[今日偶过论坛发现又一新词“贫二代”，不知所云。
晒富、飙车撞人，少数“富二代”的行为引起社会公愤，某地花钱为他们开培训班的做法更是在网上被炒得沸沸扬扬。20日凌晨3点左右，与“富二代”概念相对的博文《“贫二代”（穷二代）的标准》在网上一经发布，就受到网友关注。
《“贫二代”的标准》——作者：石述思 北京某媒体工作者
穷二代定义：
那些在改革开放中没有致富的产业工人或者农民，他们的子女如今有很多仍属......<p class='alignright'><a href='http://ashi.im/article/qiongerdai.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>今日偶过论坛发现又一新词“贫二代”，不知所云。<br />
晒富、飙车撞人，少数“富二代”的行为引起社会公愤，某地花钱为他们开培训班的做法更是在网上被炒得沸沸扬扬。20日凌晨3点左右，与“富二代”概念相对的博文《“贫二代”（穷二代）的标准》在网上一经发布，就受到网友关注。<br />
《“贫二代”的标准》——作者：石述思 北京某媒体工作者<br />
穷二代定义：</p>
<blockquote><p>那些在改革开放中没有致富的产业工人或者农民，他们的子女如今有很多仍属于弱势群体，他们广泛地存在于城市和农村之中。他说：“如果符合其中部分标准，那就需要高度警惕，努力鼓起生活的风帆，最终还要靠你的努力。</p></blockquote>
<p>穷二代具体征兆（18条）：<br />
[quote]　　1.在各种“拼爹”(注：比拼老爹，指学得好不如有个好爸爸)游戏中失败。</p>
<p>　　2.感到当农民工和大学生区别不大，于是勇敢地放弃高考。</p>
<p>　　3.别人说：家里钱不是问题；你说：问题是家里没钱。</p>
<p>　　4.寒暑假，经常需要到田里收庄稼或在城里打工挣学费。</p>
<p>　　5.有当城管的冲动，能罩着天天被驱逐的父母。</p>
<p>　　6.经常有扼住命运喉咙的冲动，但每次喉咙都被命运扼住。</p>
<p>　　7.如果读过《红楼梦》，最受触动的应该是晴雯的判词：心比天高，命比纸薄。</p>
<p>　　8.对“宁当富人三奶，不嫁穷人”的说法强烈认同。</p>
<p>　　9.从不思考“永远有多远”这样的蠢问题，却经常为明天发愁。</p>
<p>　　10.在城市经常被取笑甚至欺负，熟悉各种人的白眼。</p>
<p>　　11.从迷恋个人奋斗到觉得奋斗根本改变不了命运。</p>
<p>　　12.最熟悉的交通工具是农用车、火车和长途大巴。</p>
<p>　　13.熟悉人民币分币的购买力。</p>
<p>　　14.家里往往有没有户口的兄弟姐妹。</p>
<p>　　15.有仇富心理，并十分痛恨贪官，觉得他们不仅夺取了你父辈的财富，更夺取了你翻身的机会。</p>
<p>　　16.害怕自己尤其是家人生病，特别是慢性病，因为没医保。</p>
<p>　　17.经常看《读者》之类的“心灵鸡汤”，但好多姐妹为生活选择了“出卖自己”的方式。</p>
<p>　　18.大体认同这样一种说法：生活中的一切事情，都要靠自己的双手解决，无法反抗就要学会接受。[/quote]<br />
      当现实与理想碰撞时会产生火花，当社会与心灵产生碰撞后，心灵会崩溃、扭曲。面对现实的残酷只能一口“心灵鸡汤”一手无奈托腮。<br />
    阿士个人认为从这18条来看，这个所谓的“贫二代”只是不上不下的一代。换算成经济的话可能连中产阶级都算不上。而处于这一代的基数很大，反应液相当激烈吧。</p>
<h2  class="related_post_title">未找到相关日志,看看这些吧:</h2><ul class="related_post"><li><a href="http://ashi.im/article/3d-desktop-aquarium.html" title="【特别推荐】3D Desktop Aquarium (仿Mac水族屏保)">【特别推荐】3D Desktop Aquarium (仿Mac水族屏保)</a> (28)<br /><small>
	UC3D出品的水漫桌面动感3D屏保，主题是水族，比较特别的是，该屏保会从屏幕底部逐渐注水至淹没...</small></li><li><a href="http://ashi.im/article/testimonyit15year.html" title="【PDF】见证IT15年">【PDF】见证IT15年</a> (0)<br /><small>1992~2007的15年，世界IT事业飞速发展，短信、知识产权、电脑病毒、掌上电脑、微软Windo...</small></li><li><a href="http://ashi.im/article/k-meleondiy.html" title="K-Meleon修改版6.12完">K-Meleon修改版6.12完</a> (1)<br /><small>快速网络浏览器 K-Meleon 中文修改版 【支持FLV、支付宝、七彩快速拨号、在线播放、填表、拖...</small></li><li><a href="http://ashi.im/article/inscode.html" title="如何插入才好？">如何插入才好？</a> (0)<br /><small>如何在网页中插入另一个网页呢？

网页中插入网页：



WIDTH为宽度，HEIGHT为高，FRA...</small></li><li><a href="http://ashi.im/article/e-book.html" title="e-book电子书阅读器">e-book电子书阅读器</a> (8)<br /><small>呵呵，最近几天国庆啊，没多少时间来博客。不过貌似我博客来的人也不多，恩，仅有的几个IP也是几个有QQ...</small></li><li><a href="http://ashi.im/article/blogrecover.html" title="博客终于恢复使用了">博客终于恢复使用了</a> (6)<br /><small>前段时间博客流量“超标”了，博客被暂停。[害怕]现在换个空间，重新绑定域名，终于恢复使用了。对于其中...</small></li><li><a href="http://ashi.im/article/speaking-of-beauty-notebook-security.html" title="笔记本美女防盗卫士 金裕汉化美化版">笔记本美女防盗卫士 金裕汉化美化版</a> (3)<br /><small>这款名叫《笔记本美女防盗卫士》，英文名Laptop Alarm的笔记本电脑防盗警报软
件觉得比较实...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/qiongerdai.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>寂寞闪玩</title>
		<link>http://ashi.im/article/flash-play.html</link>
		<comments>http://ashi.im/article/flash-play.html#comments</comments>
		<pubDate>Tue, 25 Aug 2009 06:40:25 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[寂寞]]></category>
		<category><![CDATA[闪玩]]></category>

		<guid isPermaLink="false">http://www.flisy.cn/article/%e5%af%82%e5%af%9e%e9%97%aa%e7%8e%a9.html</guid>
		<description><![CDATA[最近网络上兴起的一个词语，阿士很好奇，“闪玩”到底是什么样的呢？
“闪玩”(flash-play)一词实际上早已存在，而将其作为一种旅行方式的表述则属于对该词的创新用法。简单来讲，现在所说的“闪玩”主要是指一种短期的融旅行和交友于一身的休闲活动。“闪玩”通常是在短时间内通过便捷的网络形式寻找到志同道合的玩伴，利用发达的交通工具结伴前往另一城市旅游。
<strong>他们的口号就是“应对都市人情冷漠，消除彼此之间隔......</strong><p class='alignright'><a href='http://ashi.im/article/flash-play.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>最近网络上兴起的一个词语，阿士很好奇，“闪玩”到底是什么样的呢？</p>
<blockquote><p>“闪玩”(flash-play)一词实际上早已存在，而将其作为一种旅行方式的表述则属于对该词的创新用法。简单来讲，现在所说的“闪玩”主要是指一种短期的融旅行和交友于一身的休闲活动。“闪玩”通常是在短时间内通过便捷的网络形式寻找到志同道合的玩伴，利用发达的交通工具结伴前往另一城市旅游。</p></blockquote>
<p><strong>他们的口号就是“应对都市人情冷漠，消除彼此之间隔阂”。</strong><br />
金融危机期间，去欧洲旅游，对许多人来说也许比较奢侈。相形之下，约几个伙伴一起短途旅行，也是不错的休闲方式，“闪玩”活动开始兴起。<br />
<strong>闪玩族-特点</strong><br />
1、时间短暂，一般就是一天，即“闪友”们早上见面，按照事前规划开展旅游活动，到晚上闪玩活动结束，各自分手。一般以活动时间不过夜为限。“闪友”们通过一天的旅行相识相知因而可能意犹未尽，则第二天旅游可以继续，但已经不再属于“闪玩”的活动范畴。因此活动时间一般可以利用双休日，以避开其他节日的人流高峰。<br />
　　2、交通工具一般选择飞机。一般指长途（北京去天津则明显没有必要），鉴于旅行时间的紧促和机票折扣的优惠，强烈建议到达和离开旅游地皆选择飞行的方式。最极端也最完美的表现如：闪友们周五下班后乘飞机前往目的地，周六早上见面开展旅行活动，到晚上活动结束后，闪友们可乘坐飞机返回家，周日休养一天，周一继续上班。<br />
　　3、鉴于第1、2点，闪玩地点一般选择有机场的城市或交通相对便捷的城市，如果是闪友们都很陌生的城市更好，再加让活动者都是陌生人（皆因网络而相识），新鲜感、刺激感、挑战感会更强烈。<br />
　　4、活动地点、旅游线路等具体细节可以事先商定，交通费、住宿费用（当天到当天走甚至可以不需要住宿）用建议自理，其他费用可AA。<br />
    有分析认为，闪玩之所以能兴起，是由于不少都市白领工作压力大，普遍存在焦虑、孤独的心理状态，而和陌生人游玩对情绪有一定的安抚效果。<br />
阿士认为：闪玩是寂寞的一种表现罢了。脱不了寂寞的瘾。有一个温馨的家，一个爱你的人，有白发父母，有嬉戏孩儿，有一份耀人工作&#8230;&#8230;如果你还寂寞，不在压力而在自心，找一个方式释放自己的蠢动罢了。</p>
<h2  class="related_post_title">未找到相关日志,看看这些吧:</h2><ul class="related_post"><li><a href="http://ashi.im/article/windows-7-jihuo.html" title=" Windows 7激活工具1.1（阿非YY版)"> Windows 7激活工具1.1（阿非YY版)</a> (2)<br /><small>首先声明下，阿士并不提倡使用WIN7的激活工具，现在微软为大家提供可以免费试用一年的方法了，一年之内...</small></li><li><a href="http://ashi.im/article/watch-tv-with-media.html" title="windows media可用600+的电视台">windows media可用600+的电视台</a> (20)<br /><small>个人觉得WIN7下的media player加上WIN7codes解码包不差于任何的播放器，我觉得微...</small></li><li><a href="http://ashi.im/article/effectscode.html" title="网页特效代码">网页特效代码</a> (0)<br /><small>把你的鼠标滑过来看看
...</small></li><li><a href="http://ashi.im/article/sugarsync.html" title="SugarSync网络文件同步软件">SugarSync网络文件同步软件</a> (43)<br /><small>个人很推荐这个网络硬盘，可能有朋友听说过或者正在使用。类似这个的也有其他，比如DropBox和Syn...</small></li><li><a href="http://ashi.im/article/qqmailxdown.html" title="QQmail文件无限下载发布">QQmail文件无限下载发布</a> (1)<br /><small>如果仔细的朋友会发现本博客多了一个无限下载，就在右上角啦。这个是用来突破QQ邮箱200次限制用的，如...</small></li><li><a href="http://ashi.im/article/xp-to-win7.html" title="XP变WIN7，界面仿真">XP变WIN7，界面仿真</a> (36)<br /><small>话说这两天阿士都在鼓捣着Firefox呢，之前的版本太低了，没更新，所以删除了。重新下载后发现好多插...</small></li><li><a href="http://ashi.im/article/pjedit.html" title="博客修改记录">博客修改记录</a> (0)<br /><small>本博客修改基于全静态下
一.导航树
插件，未修改程序。下载

二.统计代码扩展
1.在li...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/flash-play.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>百度的框计算</title>
		<link>http://ashi.im/article/boxcomputing.html</link>
		<comments>http://ashi.im/article/boxcomputing.html#comments</comments>
		<pubDate>Sun, 23 Aug 2009 09:06:08 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[知识传递]]></category>
		<category><![CDATA[boxcomputing]]></category>
		<category><![CDATA[百度框]]></category>
		<category><![CDATA[计算]]></category>

		<guid isPermaLink="false">http://www.flisy.cn/article/%e7%99%be%e5%ba%a6%e7%9a%84%e6%a1%86%e8%ae%a1%e7%ae%97.html</guid>
		<description><![CDATA[框计算为用户提供基于互联网的一站式服务，是一种最简单可依赖的互联网需求交互模式，用户只要在框中输入服务需求，系统就能明确识别这种需求，并将该需求分配给最优的应用或内容资源提供商处理，最终返回给用户相匹配的结果。
这个是<a target="_blank" href="http://boxcomputing.baidu.com">百度框计算</a>里对它的解释，阿士听的云里雾里。
那么<strong>百度框计算是个什么框？</strong>40596bb5
 百度世界上，李彦宏推出了一个框计算的概念，听过一通云里雾里的介绍之后，才发现百度这个框可真是......<p class='alignright'><a href='http://ashi.im/article/boxcomputing.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<blockquote><p>框计算为用户提供基于互联网的一站式服务，是一种最简单可依赖的互联网需求交互模式，用户只要在框中输入服务需求，系统就能明确识别这种需求，并将该需求分配给最优的应用或内容资源提供商处理，最终返回给用户相匹配的结果。</p></blockquote>
<p>这个是<a target="_blank" href="http://boxcomputing.baidu.com">百度框计算</a>里对它的解释，阿士听的云里雾里。<br />
那么<strong>百度框计算是个什么框？</strong>40596bb5<br />
 百度世界上，李彦宏推出了一个框计算的概念，听过一通云里雾里的介绍之后，才发现百度这个框可真是一个大箩筐啊，什么都能往里装。</p>
<p> 装的第一个东东是阿拉丁，这可是李一男上任后的第一把火，说是为了对付暗网，就是把网上无法抓取的内容通过平台对接的方式把这些内容变成网上可获得资源。比如你们公司有个数据库，通过加入百度平台可以让网民进行直接访问。这对提高百度搜索结果质量有帮助，但具体会起到多大的作用还有待检验。有价值且目前网上不存在的内容的拥有者是否愿意在网上公开是个问题，比如一些收费数据库。与Google的图书馆计划（与美国纽约公共图书馆、哈佛大学图书馆、斯坦福大学图书馆、密歇根大学图书馆以及牛津大学图书馆合作，将这些著名图书馆的馆藏图书扫描制作成电子版，供用户免费检索、阅读）相比，百度的阿拉丁计划目前看起来手笔还不够大。</p>
<p> 第二个东东是精确匹配。感觉起来一部分是类似Google整合搜索的技术，另一部分相当于语义搜索。前半部分落后Google比较多，而后半部分百度离成功还很远。</p>
<p> 第三部分为社区内容改进，特意指出了百度百科。这个是百度的优势，一如之前的百度知道。百度在技术上比不上Google，在利用网民的力量（UGC内容）改进百度的搜索体验这方面对百度的成功起到了很大的作用。</p>
<p> 凤巢也被放到了这个框里，那个竞价排名会做改进吗，这才是对广告主影响最大的产品？</p>
<p> 这个框里还有移动搜索，不过对移动搜索来说，渠道的作用强于技术，而且百度的技术并没有明显的优势。</p>
<p> 看来，百度这个框就是一个大杂烩，概念才是王道。<br />
<strong>百度“框计算”其实与“计算”无关</strong><br />
尽管百度费力的将这个所谓“框计算”与谷歌“云计算”硬拉到一起比较。但这种比较更让人感到别扭。人们<br />
在看到“框计算”这个概念时，除了感到“老土”，就是觉得有一种被“诓”了的感觉。<br />
说白了“框计算”不过是百度对其整合搜索产品和服务的描述，“框”是这其概念的核心，也就是百度围着它自己的“搜索框儿”发展的各色业务，而“计算”只不过是个响亮的噱头而已。</p>
<h2  class="related_post_title">未找到相关日志,看看这些吧:</h2><ul class="related_post"><li><a href="http://ashi.im/article/who-lend-3-money.html" title="谁能借我3块钱">谁能借我3块钱</a> (2)<br /><small>无烟的日子，让人回忆起初的时光。原先的习惯，一个人，在这炎炎九月底的落辉里一切将回到了起点。

...</small></li><li><a href="http://ashi.im/article/thunderdecrypt.html" title="迅雷解密">迅雷解密</a> (0)<br /><small>其实大家都知道，迅雷真的很恶意：你要是不装我的软件那你就不要下我的资源！迅雷还绑定了许多“恶意”的插...</small></li><li><a href="http://ashi.im/article/qiongerdai.html" title="“贫二代”怎么贫？">“贫二代”怎么贫？</a> (1)<br /><small>今日偶过论坛发现又一新词“贫二代”，不知所云。
晒富、飙车撞人，少数“富二代”的行为引起社会公愤，某...</small></li><li><a href="http://ashi.im/article/gototop.html" title="每篇日志右下角加上&#8221;返回顶部&#8221;">每篇日志右下角加上&#8221;返回顶部&#8221;</a> (1)<br /><small>对于动态与半静态：
编辑class\cls_default.asp文件，找到以下代码:
| 引用: ...</small></li><li><a href="http://ashi.im/article/challengebalance.html" title="挑战平衡">挑战平衡</a> (1)<br /><small>今天不知道怎么搞的，总是发现特别好的东西。这个转自张俊的个人网站的。希望大家都试试。我才到25关就玩...</small></li><li><a href="http://ashi.im/article/favicononline.html" title="favicon图标在线制作">favicon图标在线制作</a> (0)<br /><small>favicon图标介绍
favicon.ico一般用于作为缩略的网站标志,它显示位于浏览器的地址栏或...</small></li><li><a href="http://ashi.im/article/qq2009-sp6-kill-ads.html" title="QQ2009 SP6+手动去广告">QQ2009 SP6+手动去广告</a> (54)<br /><small>      1、新增空间编辑器，右键自己头像更快捷写日志、传照片；
      2、会话窗口消息搜...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/boxcomputing.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>301重定向</title>
		<link>http://ashi.im/article/301redirect.html</link>
		<comments>http://ashi.im/article/301redirect.html#comments</comments>
		<pubDate>Fri, 21 Aug 2009 03:58:34 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[代码如诗]]></category>
		<category><![CDATA[301]]></category>
		<category><![CDATA[PJBlog]]></category>
		<category><![CDATA[重定向]]></category>

		<guid isPermaLink="false">http://www.flisy.cn/article/301%e9%87%8d%e5%ae%9a%e5%90%91.html</guid>
		<description><![CDATA[今天起床想把昨天没做完的事搞定了，就是301重定向的问题了。阿士一直烦恼怎么才能使通过【smile.ssslove.com/***】访问的地址直接转到【www.ssslove.com/***】上来。走遍PJ论坛和百度、GOOGLE，试了很多次，最后敲定下面的代码。不知道有没有错误或者遗漏的地方，还请高手指正。



通过这个倒是可以实现。需要的朋友可以试试，当然如果你的空间可以直接设置301重定向......<p class='alignright'><a href='http://ashi.im/article/301redirect.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>今天起床想把昨天没做完的事搞定了，就是301重定向的问题了。阿士一直烦恼怎么才能使通过【smile.ssslove.com/***】访问的地址直接转到【www.ssslove.com/***】上来。走遍PJ论坛和百度、GOOGLE，试了很多次，最后敲定下面的代码。不知道有没有错误或者遗漏的地方，还请高手指正。</p>
<pre lang="LANGUAGE" line="1" file="download.txt" colla="+">
<!--rl=Request.ServerVariables(&#34;QUERY_STRING&#34;) arr=Split(url,&#34;/&#34;) n=ubound(arr) Response.Status=&#34;301 Moved Permanently&#34; Response.AddHeader &#34;Location&#34;,&#34;http://ashi.im/&#34;&amp;arr(n)&amp;&#34;&#34;-->
</pre>
<p>通过这个倒是可以实现。需要的朋友可以试试，当然如果你的空间可以直接设置301重定向的话更好。</p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/2009-9-13.html" title="2009-9-13">2009-9-13</a> (9)<br /><small>转到wordpress吧，PJBlog玩累了，现在想转过来了。原来博客的图片上面的都转过来了，但是有...</small></li><li><a href="http://ashi.im/article/bloglinkproblem.html" title="友情链接问题">友情链接问题</a> (3)<br /><small>今天用站长工具检测了一下友情链接。我就郁闷了。上图大家自己看看。PJ从PJ2~PJ3robots.t...</small></li><li><a href="http://ashi.im/article/pj-mp3player.html" title="带下载功能的MP3播放器">带下载功能的MP3播放器</a> (0)<br /><small>找了好久终于把这个找回来了，现在还是把它记录下来，方面自己也方便大家。
     注意：请将下面的【...</small></li><li><a href="http://ashi.im/article/mimicq-zone.html" title="仿腾讯QQ空间的欢迎动画">仿腾讯QQ空间的欢迎动画</a> (1)<br /><small>本次更新于2009年5月9日，做了很大的修改，还加入了视频教程。

自己的pjblog已经安装完毕，...</small></li><li><a href="http://ashi.im/article/fckstro.html" title="Fckeditor2.6.4 最终版增强版">Fckeditor2.6.4 最终版增强版</a> (1)<br /><small>Fckeditor做为一个免费开源的、功能强大网页编辑器，越来越受到用户们的欢迎，功能还在不断的加强...</small></li><li><a href="http://ashi.im/article/pj3-27-295.html" title="PJBlog3.2.7.295测试版源码">PJBlog3.2.7.295测试版源码</a> (0)<br /><small>注意：正式版本发出时不会提供从此版本升级到正式版本的升级文件。

r295 纠正部分小问题
r294...</small></li><li><a href="http://ashi.im/article/pjrenew.html" title="终于把博客更到最新版了！">终于把博客更到最新版了！</a> (2)<br /><small>整整好几天全天候的工作，终于把博客更新到最近版——R299了！[face06]在这里庆祝下[face...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/301redirect.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>把网页中的(电话，qq等数字)生成图片的ASP程序</title>
		<link>http://ashi.im/article/tel-qq-num-pic.html</link>
		<comments>http://ashi.im/article/tel-qq-num-pic.html#comments</comments>
		<pubDate>Thu, 20 Aug 2009 05:31:52 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[代码如诗]]></category>
		<category><![CDATA[QQ]]></category>
		<category><![CDATA[图片]]></category>
		<category><![CDATA[文件]]></category>
		<category><![CDATA[程序]]></category>

		<guid isPermaLink="false">http://www.flisy.cn/article/%e6%8a%8a%e7%bd%91%e9%a1%b5%e4%b8%ad%e7%9a%84%e7%94%b5%e8%af%9d%ef%bc%8cqq%e7%ad%89%e6%95%b0%e5%ad%97%e7%94%9f%e6%88%90%e5%9b%be%e7%89%87%e7%9a%84asp%e7%a8%8b%e5%ba%8f.html</guid>
		<description><![CDATA[将以下代码保存为img.asp，在要显示电话号码的位置插入<img src=&#34;img.asp?tel=0000-123456789&#34;/>即可。如：<img src="http://ashi.im/img.asp?tel=0000-123456789" border="0" alt=""/>
[code][/code]
你可以看看相关的东东:<ul class="related_post"><li><a href="http://ashi.im/article/personalplace.html" title="个人资源专用收集地">个人资源专用收集地</a> (0)群里文件：
10款超酷JS图片展示代码.rar
QQ邮箱无限中转站下载源码.rar
QQ无限下载发布...</li><li><a href="http://ashi.im/article/everything.html" title="Everything文件搜索程序">Everything文件搜索程序</a> (4)不知道大家的电脑磁盘里的东西多不多，恩，又或者你要找某个你忘了放在哪里的文件，也有很多人知道利用Wi...</li><li><a href="http://ashi.im/article/qq2009vippatch.html" title="QQ2009sp3本地会员补丁">Q......</a></li></ul><p class='alignright'><a href='http://ashi.im/article/tel-qq-num-pic.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>将以下代码保存为img.asp，在要显示电话号码的位置插入<img src=&#34;img.asp?tel=0000-123456789&#34;>即可。如：<img src="http://ashi.im/img.asp?tel=0000-123456789" border="0" alt=""/></p>
<p>[code]<%<br />
Call Com_CreatValidCode(Request.QueryString(&#34;tel&#34;))<br />
Public Sub Com_CreatValidCode(pTel)<br />
&#39;----------禁止缓存<br />
Response.Expires = 0<br />
Response.AddHeader &#34;Pragma&#34;,&#34;no-cache&#34;<br />
Response.AddHeader &#34;cache-ctrol&#34;,&#34;no-cache&#34;<br />
Response.ContentType = &#34;Image/BMP&#34;<br />
Randomize<br />
Dim i, ii, iii ,rndColor,strLen,sql,rs<br />
Const cOdds = 5 &#39;------------杂点出现的机率<br />
Const str=&#34;0123456789-&#34;<br />
strLen = len(pTel)<br />
rndColor = ChrB(cint(rnd*255)) &amp; ChrB(cint(rnd*255)) &amp; ChrB(cint(rnd*255))<br />
&#39;-----------颜色的数据(字符，背景)<br />
Dim vColorData(1)<br />
&#39;vColorData(0) = ChrB(0) &amp; ChrB(0) &amp; ChrB(0) &#39;----蓝0，绿0，红0（黑色）<br />
&#39;vColorData(1) = ChrB(255) &amp; ChrB(255) &amp; ChrB(255) &#39;----蓝250，绿236，红211（浅蓝色）<br />
&#39;vColorData(0) = ChrB(197) &amp; ChrB(106) &amp; ChrB(49) &#39;---- 蓝0，绿0，红0（黑色）<br />
&#39;vColorData(1) = ChrB(238) &amp; ChrB(210) &amp; ChrB(193) &#39;-----蓝250，绿236，红211（浅蓝色）<br />
vColorData(0) = ChrB(0) &amp; ChrB(0) &amp; ChrB(0) &#39;---------蓝0，绿0，红0（黑色）<br />
vColorData(1) = ChrB(205) &amp; ChrB(237) &amp; ChrB(245) &#39;------------蓝250，绿236，红211（浅蓝色）<br />
&#39;--------------------随机产生字符<br />
Randomize<br />
Dim vCode()<br />
redim vCode(strLen-1)<br />
For i = 0 To strLen-1<br />
vCode(i) =instr(1,str,mid(pTel,i+1,1),1)-1<br />
Next<br />
&#39;-----------字符的数据<br />
Dim vNumberData(11)<br />
&#39;Verdana Font<br />
vNumberData(0) = &#34;11111111111000111101110111011101110111011101110111011101110111011110001111111111&#34;<br />
vNumberData(1) = &#34;11111111111101111110011111110111111101111111011111110111111101111110001111111111&#34;<br />
vNumberData(2) = &#34;11111111111000111101110111011101111110111111011111101111110111111100000111111111&#34;<br />
vNumberData(3) = &#34;11111111111000111101110111111101111100111111110111111101110111011110001111111111&#34;<br />
vNumberData(4) = &#34;11111111111110111111001111101011111010111101101111100001111110111111100111111111&#34;<br />
vNumberData(5) = &#34;11111111110000011101111111011111110000111111110111111101110111011110001111111111&#34;<br />
vNumberData(6) = &#34;11111111111000111101101111011111110000111101110111011101110111011110001111111111&#34;<br />
vNumberData(7) = &#34;11111111110000011101101111111011111101111111011111110111111101111111011111111111&#34;<br />
vNumberData(8) = &#34;11111111111000111101110111011101111000111101110111011101110111011110001111111111&#34;<br />
vNumberData(9) = &#34;11111111111000111101110111011101110111011110000111111101111011011110000111111111&#34;<br />
vNumberData(10) = &#34;11111111111111111111111111111111111111111100000111111111111111111111111111111111&#34;<br />
vNumberData(11) = &#34;11111111111111111111111111111111111111111111111111111111111111111111111111111111&#34;<br />
&#39;-----------------输出图像文件头 <br />
Response.BinaryWrite ChrB(66) &amp; ChrB(77) &amp;chrb(((strLen*8*10*3+54) mod 256)) &amp; chrb(((strLen*8*10*3+54)\ 256)mod 256) &amp; ChrB((((strLen*8*10*3+54)\ 256)\256)mod 256) &amp; ChrB(((((strLen*8*10*3+54)\ 256)\256)\256)mod 256) &amp; ChrB(0) &amp; ChrB(0) &amp;_<br />
ChrB(0) &amp; ChrB(0) &amp; ChrB(54) &amp; ChrB(0) &amp; ChrB(0) &amp; ChrB(0) &amp; ChrB(40) &amp; ChrB(0) &amp;_<br />
ChrB(0) &amp; ChrB(0) &amp; ChrB(strLen*8) &amp; ChrB(0) &amp; ChrB(0) &amp; ChrB(0) &amp; ChrB(10) &amp; ChrB(0) &amp;_<br />
ChrB(0) &amp; ChrB(0) &amp; ChrB(1) &amp; ChrB(0)<br />
&#39;------------------输出图像信息头<br />
Response.BinaryWrite ChrB(24) &amp; ChrB(0) &amp; ChrB(0) &amp; ChrB(0) &amp; ChrB(0) &amp; ChrB(0)&amp;_<br />
ChrB((strLen*8*10*3)mod 256)&amp;ChrB(((strLen*8*10*3)\256)mod 256)&amp;ChrB((((strLen*8*10*3)\256)\256)mod 256)&amp;ChrB(((((strLen*8*10*3)\256)\256)\256)mod 256)&amp;_<br />
ChrB(196) &amp; ChrB(14) &amp; ChrB(0) &amp; ChrB(0) &amp; ChrB(196) &amp; ChrB(14)&amp;ChrB(0) &amp; ChrB(0) &amp;_<br />
ChrB(0) &amp; ChrB(0) &amp; ChrB(0) &amp; ChrB(0) &amp; ChrB(0) &amp; ChrB(0) &amp; ChrB(0) &amp; ChrB(0)<br />
For i = 9 To 0 Step -1 &#39;----------历经所有行<br />
For ii = 0 To strLen-1 &#39;-------历经所有字<br />
For iii = 1 To 8 &#39;--------历经所有像素<br />
&#39;---------逐行、逐字、逐像素地输出图像数据<br />
If Rnd * 99 + 1 < cOdds Then &#39;---------随机生成杂点<br />
Response.BinaryWrite rndColor<br />
Else<br />
Response.BinaryWrite vColorData(Mid(vNumberData(vCode(ii)), i * 8 + iii, 1))<br />
End If<br />
Next<br />
Next<br />
Next<br />
End Sub<br />
%>[/code]</p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/personalplace.html" title="个人资源专用收集地">个人资源专用收集地</a> (0)<br /><small>群里文件：
10款超酷JS图片展示代码.rar
QQ邮箱无限中转站下载源码.rar
QQ无限下载发布...</small></li><li><a href="http://ashi.im/article/everything.html" title="Everything文件搜索程序">Everything文件搜索程序</a> (4)<br /><small>不知道大家的电脑磁盘里的东西多不多，恩，又或者你要找某个你忘了放在哪里的文件，也有很多人知道利用Wi...</small></li><li><a href="http://ashi.im/article/qq2009vippatch.html" title="QQ2009sp3本地会员补丁">QQ2009sp3本地会员补丁</a> (0)<br /><small>QQ2009sp3本地会员补丁！（本补丁不支持QQ2009 SP1以下版本）
安装方法：解压后 打...</small></li><li><a href="http://ashi.im/article/outchain.html" title="图片文件音乐免费外链网络存储空间">图片文件音乐免费外链网络存储空间</a> (0)<br /><small>想想这年头真是诱惑无处不在啊,个人站长或多或少的受到虚拟空间或者网络硬盘大小的限制,而十分的节约每一...</small></li><li><a href="http://ashi.im/article/icomaker.html" title="ICO图标生成工具 绿色工具">ICO图标生成工具 绿色工具</a> (0)<br /><small>上面提到了一个生成ICO图标的办法就是在线生成，现在给大家找了一个工具，功能如下：

1) 把各种图...</small></li><li><a href="http://ashi.im/article/qq-2010-aero.html" title="体验QQ2010Aero皮肤全透明效果">体验QQ2010Aero皮肤全透明效果</a> (75)<br /><small>QQ2010内测版，Vista、Wvin7x下，完美支持Aero皮肤全透明效果！

此次开启透明...</small></li><li><a href="http://ashi.im/article/qq-mail-down-pojie.html" title="QQ中转站限次破解工具">QQ中转站限次破解工具</a> (63)<br /><small>起：今天把Google广告换了一下颜色，因为很多朋友善意提及了，阿士在这里感谢了，特别是帮我点广告的...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/tel-qq-num-pic.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
