<?xml version="1.0" encoding="UTF-8"?>
  <feed xmlns="http://www.w3.org/2005/Atom">
  <title type="html"><![CDATA[Yes1000 一想千开]]></title>
  <subtitle type="html"><![CDATA[分享·快乐·成长]]></subtitle>
  <id>http://www.yes1000.com/</id>
  <link rel="alternate" type="text/html" href="http://www.yes1000.com/" /> 
  <link rel="self" type="application/atom+xml" href="http://www.yes1000.com/atom.asp" /> 
  <generator uri="http://www.pjhome.net/" version="2.8">PJBlog3</generator> 
  <updated>2010-02-16T05:27:11+08:00</updated>

  <entry>
	  <title type="html"><![CDATA[任务管理插件-可查看每个进程占用的网络带宽]]></title>
	  <author>
		 <name>一想千开</name>
		 <uri>http://www.yes1000.com/</uri>
		 <email>www@yes1000.com</email>
	  </author>
	  <category term="" scheme="http://www.yes1000.com/default.asp?cateID=20" label="资源" /> 
	  <updated>2010-02-16T05:27:11+08:00</updated>
	  <published>2010-02-16T05:27:11+08:00</published>
		  <summary type="html"><![CDATA[<p style="text-align: left">懒得上传了，发个汉化新世纪的链接吧：<br />
<br />
<a target="_blank" href="http://www.hanzify.org/?Go=Show::List&amp;ID=11863">http://www.hanzify.org/?Go=Show::List&amp;ID=11863</a><br />
<br />
功能很强大，上面的链接仅仅介绍了一点点，需要的童鞋自己体会吧：）<br />
<br />
传说中的图和真相：<br />
<br />
<img alt="" src="http://www.yes1000.com/attachments/month_1002/k201021655114.gif" /><br />
<br />
PS：每个进程的每个网络连接都会显示单独的一条&hellip;&hellip;</p>
<p>&nbsp;</p>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yes1000.com/Resources/%E6%9F%A5%E7%9C%8B%E6%AF%8F%E4%B8%AA%E8%BF%9B%E7%A8%8B%E5%8D%A0%E7%94%A8%E7%9A%84%E7%BD%91%E7%BB%9C%E5%B8%A6%E5%AE%BD%E7%9A%84%E8%BD%AF%E4%BB%B6.htm" /> 
	  <id>http://www.yes1000.com/Resources/%E6%9F%A5%E7%9C%8B%E6%AF%8F%E4%B8%AA%E8%BF%9B%E7%A8%8B%E5%8D%A0%E7%94%A8%E7%9A%84%E7%BD%91%E7%BB%9C%E5%B8%A6%E5%AE%BD%E7%9A%84%E8%BD%AF%E4%BB%B6.htm</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[JS获取GET值，获取一个指定参数名称的值]]></title>
	  <author>
		 <name>一想千开</name>
		 <uri>http://www.yes1000.com/</uri>
		 <email>www@yes1000.com</email>
	  </author>
	  <category term="" scheme="http://www.yes1000.com/default.asp?cateID=11" label="Web" /> 
	  <updated>2010-01-28T11:35:57+08:00</updated>
	  <published>2010-01-28T11:35:57+08:00</published>
		  <summary type="html"><![CDATA[话说这几天需要一个获取GET值的JS函数，实现和ASP的Request.QueryString(key)或者PHP的$_GET一摸一样的功能，于是，我在网上找啊找，搜索“JS获取GET值”，结果页面是不少，可是打开就全让我失望了：全讲的是怎么获取全部的查询字串，而不是获取一个查询参数的值。<br/><br/>没办法，只能自己动手了。这个函数除了能正确获取指定参数的值外容错也考虑了，当没有查询字串或者没有出现指定参数时，会像ASP和PHP一样，返回一个空字符串。虽说功能和使用都没问题，不过咱的JS功力还不够深厚，写的比较繁琐也比较乱，童鞋们就凑合下吧。<br/><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><img src="http://www.yes1000.com/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent">function getQueryString(key){<br/>&#160;&#160;&#160;&#160;var searchString = document.location.search.toString(); <br/>&#160;&#160;&#160;&#160;var returnValue = &#39;&#39;;<br/>&#160;&#160;&#160;&#160;if (searchString.substr(0,1)==&#39;?&#39; &amp;&amp; searchString.length&gt;1)<br/>&#160;&#160;&#160;&#160;{<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;var queryString = searchString.substring(1,searchString.length)<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;var queryList = queryString.split(&#39;&amp;&#39;);<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;for (var i=0; i&lt;queryList.length; i++)<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;var oneQuery = queryList[i].split(&#39;=&#39;);<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;if (oneQuery[0]==key &amp;&amp; oneQuery.length==2)<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;returnValue = oneQuery[1];<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}<br/>&#160;&#160;&#160;&#160;}<br/>&#160;&#160;&#160;&#160;return returnValue;<br/>}</div></div><br/><br/><div align="center"><img src="http://www.yes1000.com/attachments/month_1001/y2010128115147.gif" border="0" alt=""/></div><br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yes1000.com/Web/JS%2DGET.htm" /> 
	  <id>http://www.yes1000.com/Web/JS%2DGET.htm</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[吸烟能防甲流？]]></title>
	  <author>
		 <name>一想千开</name>
		 <uri>http://www.yes1000.com/</uri>
		 <email>www@yes1000.com</email>
	  </author>
	  <category term="" scheme="http://www.yes1000.com/default.asp?cateID=14" label="乱弹" /> 
	  <updated>2009-11-05T11:00:26+08:00</updated>
	  <published>2009-11-05T11:00:26+08:00</published>
		  <summary type="html"><![CDATA[<p>　　昨天吃饭时，听邻桌的人正在津津乐道的讨论甲流和吸烟的事：&ldquo;据说得甲流的人中有65%都是不吸烟的，只有35%吸烟的&hellip;&hellip;&rdquo;，然后就争着说自己抽烟有多厉害，以此作为不会得甲流的资本炫耀&hellip;&hellip;<br />
<br />
　　吸烟真的对甲流有预防作用吗？尚且不管他们说的这个数字是真是假，暂且当成真的。&ldquo;得甲流的人中有65%都是不吸烟的，只有35%吸烟的&rdquo;，这个比例，看第一眼，给人的感觉是吸烟确实对甲流又预防作用，但是他们都忽略了一个重要的问题，那就是吸烟人群在总人口中的比例。<br />
<br />
　　据《2009年中国控制吸烟报告》，2009年中国烟民大约有3亿多，在中国的13亿人(很保守的数字，估计早过16亿了吧)中，最多也就占了那么25%吧。<br />
<br />
　　按这个比例分析，如果吸烟对是否容易感染甲流没有影响，那么，得甲流的人中应该有75%都是不吸烟的，其余的吸烟；如果吸烟导致更容易感染甲流，那么，得甲流的人中应该有少于75%都是不吸烟的，其余的吸烟；如果吸烟导致不容易感染甲流，那么，得甲流的人中应该有多于75%都是不吸烟的，其余的吸烟&hellip;&hellip;<br />
<br />
　　那么，现在，如果他们说的情况是真的，&ldquo;得甲流的人中有65%都是不吸烟的，只有35%吸烟的&rdquo;，是什么情况呢？</p>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yes1000.com/comment/%E5%90%B8%E7%83%9F%E9%98%B2%E7%94%B2%E6%B5%81.htm" /> 
	  <id>http://www.yes1000.com/comment/%E5%90%B8%E7%83%9F%E9%98%B2%E7%94%B2%E6%B5%81.htm</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[另类办法防IE主页被改：针对无法常规解决的00333.cn及www.2345.com]]></title>
	  <author>
		 <name>一想千开</name>
		 <uri>http://www.yes1000.com/</uri>
		 <email>www@yes1000.com</email>
	  </author>
	  <category term="" scheme="http://www.yes1000.com/default.asp?cateID=13" label="Windows" /> 
	  <updated>2009-09-16T01:02:45+08:00</updated>
	  <published>2009-09-16T01:02:45+08:00</published>
		  <summary type="html"><![CDATA[<p>　　太懒，为了免得每次登陆都要输入密码，好多密码都让电脑记住了。需要把密码给别人才发现自己早就不记得密码是什么了。<br />
<br />
　　没办法，只好下载一个&ldquo;星号密码查看器&rdquo;之类的软件来查一查了。百度了一下，第一个是天空软件的&ldquo;XP星号密码查看器&rdquo;，没多想，下载安装了，密码被搞定。<br />
<br />
　　但这一装不要紧，装得我的IE主页隔三岔五的被修改成http://00333.cn/alei.htm<font color="#000000">或者</font>http://www.2345.com/?294，卸载掉XP星号查看器后故障依旧，IE主页依然被隔三岔五的修改成上面这两个。<br />
<br />
　　试了好几种杀毒软件和360安全卫士，均无能为力，查不到任何结果。GOOGLE一下，发现有这个问题的人还真不少，还都是安装过XP星号密码查看器的，果然是这东西捣的鬼，再搜解决办法，居然没有办法能解决，搜到的内容多数都是骂各安全软件解决不了这问题，甚至怀疑是360自己搞的。唯一能解决的办法就是重装系统。<br />
<br />
　　怎么办捏？重装我肯定不行，我系统里装的东西太多而且太多我自己习惯的设置，即使恢复到我上次做的GHOST备份，也得花好几天才能把系统配置好。<br />
<br />
　　真的就没有办法了吗？既然常规的办法解决不了，有没有非常规的方法呢？<br />
<br />
　　IE主页，是保存在注册表中的HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main项的Start Page键的，各种软件和设置工具要修改IE主页，就得修改这个键值，病毒和恶意软件也不例外。那么，我们只要想办法将这个键值设置为只读，让任何程序都无法修改，就可以阻止主页被修改。<br />
<br />
　　注册表本身就提供了权限的功能，我们只要一次展开HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer，找到Main项点右键，再选择&ldquo;权限&rdquo;</p>
<p>&nbsp;</p>
<p style="text-align: center"><img alt="" src="http://www.yes1000.com/attachments/month_0909/a200991602614.gif" /><br />
<br />
&nbsp;</p>
<p>现在看到的是Main项的权限窗口，可以看到它的权限都是继承下来的，无法删除，怎么办呢?点高级，然后在&ldquo;权限&rdquo;选项卡取消&ldquo;允许父项的集成权限传播到该对象&hellip;&hellip;&rdquo;前面的勾选，这是会询问如何处理现有权限，我们点&ldquo;删除&rdquo;，然后点确定，最后安全提示询问是否继续，点&ldquo;是&rdquo;。如图：</p>
<p style="text-align: center"><img alt="" src="http://www.yes1000.com/attachments/month_0909/y200991611020.gif" /><br />
<br />
&nbsp;</p>
<p style="text-align: left">现在已经删除了已有的权限，但还没完工，我们还得让程序能读取到主页数据才行，按常规来说，我们应该添加SYSTEM的和ADMINISTRATORS的读取权，不过添加两个太麻烦，哈哈，既然懒，就懒到底，直接给EVERYONR加上读取权得了：</p>
<p style="text-align: center"><br />
<img alt="" src="http://www.yes1000.com/attachments/month_0909/7200991605816.gif" /></p>
<p style="text-align: left"><br />
<br />
　　哈哈，现在试试，看谁还能修改你的主页？就连手动在IE选项中修改都修改不掉了，让那些修改主页的恶意程序见鬼去吧！<br />
<br />
　　最后顺便提一下，<strong>切记请先将主页设置成正常的后再执行以上操作</strong>，不然把主页变成上面这两个改不回来了可别怪我。另外，XP下用regedit打开的注册表貌似不能设置权限（偶也不太清楚，不用XP好多年-_-|||），需要运行&ldquo;regedt32&rdquo;才能打开可设置权限的注册表。</p>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yes1000.com/Windows/IE%2D00333%2Ecn%2Ealei%2Ehtm%2Dwww%2E2345%2Ecom.htm" /> 
	  <id>http://www.yes1000.com/Windows/IE%2D00333%2Ecn%2Ealei%2Ehtm%2Dwww%2E2345%2Ecom.htm</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[解决了博客部分日志评论后无法返回的问题]]></title>
	  <author>
		 <name>一想千开</name>
		 <uri>http://www.yes1000.com/</uri>
		 <email>www@yes1000.com</email>
	  </author>
	  <category term="" scheme="http://www.yes1000.com/default.asp?cateID=7" label="ASP" /> 
	  <updated>2009-09-08T00:29:40+08:00</updated>
	  <published>2009-09-08T00:29:40+08:00</published>
		  <summary type="html"><![CDATA[　　几个月前，为了博客程序能够支持生成中文文件名，更利于搜索引擎抓取，对页面中的链接文件名使用了Server.URLEncode。<br/><br/>　　这样子是解决了中文文件名的问题，但又来了个新的问题，某些日志在评论后点返回会提示404错误。<br/><br/>　　因为并没有认为这是一个很大的问题和时间关系，一直都未研究此问题。今天仔细看了一下，发现出问题的日志都是文件名里含有特殊字符的，比如汉字，减号“-”等。问题的表现貌似是当评论完毕点返回的时候，返回的路径被进行了两次Server.URLEncode，所以会跳到一个根本不存在的文件上，于是，404了。<br/><br/>　　继续研究发现，程序里一切都是没有问题的，问题的原因出在点击返回时，程序使用了Response的Redirect方法来实现页面的重定向。而这个Redirect方法会自动给提交给它的页面地址URLEncode编码一次，因为程序中使用统一的函数来获取一篇日志的文件名，获取到的文件名本身已经URLEncode编码过一次了，再编码一次，当然就出错了。<br/><br/>　　怎么办呢？要是自己再写一个不进行编码的获取文件路径的函数，有点麻烦。要不，在Redirect重定向前把编码过的路径还原一下？嗯，是个好办法，就这么办。不过搞半天发现VBSCRIPT中好像没有还原URLEncode的函数，自己去实现又倍儿麻烦-_-||| 嗯，还是用JSCRIPT吧：<br/><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><img src="http://www.yes1000.com/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent">&lt;script Language=&#34;JScript&#34; runat=&#34;server&#34;&gt;<br/>//*************************************<br/>//还原URLEncode<br/>//*************************************<br/>function URLDecode(url){<br/>&#160;&#160;&#160;&#160;return decodeURI(url);<br/>}<br/>&lt;/script&gt;<br/></div></div>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yes1000.com/asp/ASP%2DServer%2EURLEncode%2DRestore.htm" /> 
	  <id>http://www.yes1000.com/asp/ASP%2DServer%2EURLEncode%2DRestore.htm</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[外国专家大厦]]></title>
	  <author>
		 <name>一想千开</name>
		 <uri>http://www.yes1000.com/</uri>
		 <email>www@yes1000.com</email>
	  </author>
	  <category term="" scheme="http://www.yes1000.com/default.asp?cateID=15" label="琐碎" /> 
	  <updated>2009-09-07T18:46:34+08:00</updated>
	  <published>2009-09-07T18:46:34+08:00</published>
		  <summary type="html"><![CDATA[<p style="text-align: center"><img alt="" src="http://www.yes1000.com/attachments/month_0909/6200997184524.JPG" /><br />
&nbsp;</p>
<p style="text-align: center"><img alt="" src="http://www.yes1000.com/attachments/month_0909/a200997184728.JPG" /></p>
<p style="text-align: left"><br />
这名字&hellip;&hellip; -_-|||</p>
<p style="text-align: left">悄悄的打听一下，还有没有中国专家大厦、外星专家大厦和地球专家大厦？</p>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yes1000.com/life/BeiJing%2DForeign%2DExperts%2DBuilding.htm" /> 
	  <id>http://www.yes1000.com/life/BeiJing%2DForeign%2DExperts%2DBuilding.htm</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[为什么北京的地名总是比我想象的惊艳？]]></title>
	  <author>
		 <name>一想千开</name>
		 <uri>http://www.yes1000.com/</uri>
		 <email>www@yes1000.com</email>
	  </author>
	  <category term="" scheme="http://www.yes1000.com/default.asp?cateID=14" label="乱弹" /> 
	  <updated>2009-08-22T01:31:00+08:00</updated>
	  <published>2009-08-22T01:31:00+08:00</published>
		  <summary type="html"><![CDATA[<p>　　<strong>之一：<br />
<br />
</strong>　　2008年春节前，北京。买不到回家的火车票，正发愁怎么回家。<br />
&nbsp;</p>
<p>　　同事：&ldquo;要不你先坐汽车去太原吧，太原的火车票应该比较好买到。&rdquo;<br />
&nbsp;</p>
<p>　　&ldquo;嗯。好吧，那去太原在哪去坐汽车？&rdquo;<br />
&nbsp;</p>
<p>　　&ldquo;LiZe桥。&rdquo;<br />
&nbsp;</p>
<p>　　立则桥？给人感觉好刚正有力的名字，嗯，一定是个有着不凡的故事的地方。<br />
&nbsp;</p>
<p>　　打一黑车。半小时后，师傅跟我说：&ldquo;看见没？前面就是汽车站，你从这下去往右走然后过马路&hellip;&hellip;&rdquo;<br />
&nbsp;</p>
<p>　　下车，抬头。呈现在眼前的是&ldquo;北京丽泽桥长途汽车站&rdquo;，我仔细揉了揉眼睛再看，依然还是&ldquo;北京丽泽桥长途汽车站&rdquo;，我差点没晕过去&hellip;&hellip;<br />
&nbsp;</p>
<p>============================================================</p>
<p>　　<strong>之二</strong>(我分不清前鼻音和后鼻音)：<br />
<br />
　　今年春节后。北京。刚下火车。<br />
<br />
　　&ldquo;我怎么去你那里啊？&rdquo;<br />
<br />
　　&ldquo;我单位在农大JingShuYuan这里，你坐XX路公交车到JingShuYuan下车就到了。&rdquo;<br />
<br />
　　禁书院？我朝什么时候这么英明了？能给禁书都设立一个书院，一定要景仰景仰&hellip;&hellip;<br />
<br />
　　一会儿后&hellip;&hellip;<br />
<br />
　　&ldquo;各位乘客，JingShuYuan到了，请携带好随身物品，从后门下车。&rdquo;<br />
<br />
　　我怀着对&ldquo;禁书院&rdquo;期待的心情快步从公交上下来，不小心看到了公交站牌上的字：<br />
<br />
　　&ldquo;静菽苑&rdquo;&hellip;&hellip;</p>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yes1000.com/comment/JingYanDeBeiJingDiMing.htm" /> 
	  <id>http://www.yes1000.com/comment/JingYanDeBeiJingDiMing.htm</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[[旧文重发]baidu.yes1000.com重要功能简介]]></title>
	  <author>
		 <name>一想千开</name>
		 <uri>http://www.yes1000.com/</uri>
		 <email>www@yes1000.com</email>
	  </author>
	  <category term="" scheme="http://www.yes1000.com/default.asp?cateID=17" label="作品" /> 
	  <updated>2009-08-01T00:34:57+08:00</updated>
	  <published>2009-08-01T00:34:57+08:00</published>
		  <summary type="html"><![CDATA[考虑到很多TX们不了解baidu.yes1000.com系统及本博客中旧的介绍日志丢失的问题，重新发布下此文。<br/><br/><span style="color:Red"> 申明：本系统只是个查询收录的第三方工具，跟百度官方没有任何关系，收录不收录的问题请不要在这里问，谢谢合作。</span><br/><br/><strong>1.可精确查询到百度昨天收你网站的具体那些页面及数量</strong><br/>该功能无需要注册，只要在首页输入域名即可查询到，另外还可以查询到本周、本月等事件段内收录的具体页面及数量，如图：<br/><div class="UBBPanel quotePanel"><div class="UBBTitle"><img src="http://www.yes1000.com/images/quote.gif" style="margin:0px 2px -3px 0px" alt="引用内容"/> 引用内容</div><div class="UBBContent"><div align="center"><img src="http://www.yes1000.com/attachments/month_0908/d20098102718.gif" border="0" alt=""/></div></div></div><br/><br/><strong>2.注册后添加网站，多个网站收录情况一目了然</strong><br/>注册后将多个自己的网站或自己感兴趣的网站添加到本系统，每次只需要登陆一下，多个网站的收录情况一目了然，无需每天都要每个域名输入一次SITE一下（如果登录时选择了记忆登录，连登录都不需要，打开页面即可看到），如图：<br/><div class="UBBPanel quotePanel"><div class="UBBTitle"><img src="http://www.yes1000.com/images/quote.gif" style="margin:0px 2px -3px 0px" alt="引用内容"/> 引用内容</div><div class="UBBContent"><div align="center"><img src="http://www.yes1000.com/attachments/month_0908/f20098102723.gif" border="0" alt=""/></div></div></div><br/><br/><strong>3.可为您的网站记录每天被收录的情况</strong><br/>将自己的网站添加为“我的网站”，通过网站所有权验证后，本系统可为您的网站记录每天被百度收录的情况，让您知道网站每天被百度收录的数量及具体页面，方便优化和以后分析研究。如图：<br/><div class="UBBPanel quotePanel"><div class="UBBTitle"><img src="http://www.yes1000.com/images/quote.gif" style="margin:0px 2px -3px 0px" alt="引用内容"/> 引用内容</div><div class="UBBContent"><div align="center"><img src="http://www.yes1000.com/attachments/month_0908/u20098102727.gif" border="0" alt=""/></div></div></div> <br/><br/><div class="UBBPanel quotePanel"><div class="UBBTitle"><img src="http://www.yes1000.com/images/quote.gif" style="margin:0px 2px -3px 0px" alt="引用内容"/> 引用内容</div><div class="UBBContent"><div align="center"><img src="http://www.yes1000.com/attachments/month_0908/u20098102733.gif" border="0" alt=""/></div></div></div><br/><br/><strong>4.强大且人性的关键词排名查询功能</strong>：<br/><div class="UBBPanel quotePanel"><div class="UBBTitle"><img src="http://www.yes1000.com/images/quote.gif" style="margin:0px 2px -3px 0px" alt="引用内容"/> 引用内容</div><div class="UBBContent"><div align="center"><img src="http://www.yes1000.com/attachments/month_0908/q20098103440.gif" border="0" alt=""/></div></div></div>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yes1000.com/Yes1000Soft/baidu%2Eyes1000%2Ecom%2EIntroduction.htm" /> 
	  <id>http://www.yes1000.com/Yes1000Soft/baidu%2Eyes1000%2Ecom%2EIntroduction.htm</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[baidu.yes1000.com 百度今日收录查询系统关闭一年后重新上线]]></title>
	  <author>
		 <name>一想千开</name>
		 <uri>http://www.yes1000.com/</uri>
		 <email>www@yes1000.com</email>
	  </author>
	  <category term="" scheme="http://www.yes1000.com/default.asp?cateID=15" label="琐碎" /> 
	  <updated>2009-07-30T15:17:00+08:00</updated>
	  <published>2009-07-30T15:17:00+08:00</published>
		  <summary type="html"><![CDATA[<p>2008年9月，因为负担不了服务器费用，只好将被众多站长喜爱的<a target="_blank" href="http://baidu.yes1000.com">baidu.yes1000.com</a>关闭，时至今日，已经快一年了。期间一直想重新开启，可是因为程序架构当初设计的无法运行于虚拟空间中，需要运行于独立服务器中，因此一直未能重新开启。<br />
<br />
　　特别感谢<a target="_blank" href="http://www.jjidc.com/">JJIDC.COM</a>昨日为本系统赞助了服务器及带宽，让<a target="_blank" href="http://baidu.yes1000.com">baidu.yes1000.com</a>得以重新与大家见面。<br />
<br />
　　现在，服务器及网站已经配置完毕，可以正常使用了，欢迎新老用户登录使用。系统中保留了所有老用户的数据，老用户直接登录可查看以前的记录。<br />
<br />
　　再接下来的日子，本系统将进行大幅的改进，提供更加人性和好用、方便的服务，请拭目以待。</p>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yes1000.com/life/baidu%2Eyes1000%2Ecom%2EReStart.htm" /> 
	  <id>http://www.yes1000.com/life/baidu%2Eyes1000%2Ecom%2EReStart.htm</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[批量清除数据库所有表的所有字段中的恶意代码]]></title>
	  <author>
		 <name>一想千开</name>
		 <uri>http://www.yes1000.com/</uri>
		 <email>www@yes1000.com</email>
	  </author>
	  <category term="" scheme="http://www.yes1000.com/default.asp?cateID=7" label="ASP" /> 
	  <updated>2009-07-20T15:16:33+08:00</updated>
	  <published>2009-07-20T15:16:33+08:00</published>
		  <summary type="html"><![CDATA[<div class="UBBPanel codePanel"><div class="UBBTitle"><img src="http://www.yes1000.com/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent">declare @delStr nvarchar(500)<br/>set @delStr=&#39;&lt;script src=http://3bomb%2Ecom/c.js&gt;&lt;/script&gt;&#39;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --delStr为你的恶意代码<br/>/****************************************/<br/><br/>/**********以下为操作实体************/<br/>set nocount on<br/><br/>declare @tableName nvarchar(100),@columnName nvarchar(100),@tbID int,@iRow int,@iResult int<br/>declare @sql nvarchar(500)<br/><br/>set @iResult=0<br/>declare cur cursor for<br/>sel&#101;ct name,id from sysobjects wh&#101;re xtype=&#39;U&#39;<br/><br/>open cur<br/>fetch next from cur into @tableName,@tbID<br/><br/>while @@fetch_status=0<br/>begin<br/>declare cur1 cursor for<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--xtype in (231,167,239,175,99,35) 为char,varchar,nchar,nvarchar,ntext,text类型<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sel&#101;ct name from syscolumns wh&#101;re xtype in (231,167,239,175,35,99) and id=@tbID<br/>open cur1<br/>fetch next from cur1 into @columnName<br/>while @@fetch_status=0<br/>begin<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;set @sql=&#39;up&#100;ate [&#39; + @tableName + &#39;] set [&#39;+ @columnName +&#39;]= replace(CAST([&#39;+@columnName+&#39;] AS varchar(8000)),&#39;&#39;&#39;+@delStr+&#39;&#39;&#39;,&#39;&#39;&#39;&#39;) wh&#101;re [&#39;+@columnName+&#39;] like &#39;&#39;%&#39;+@delStr+&#39;%&#39;&#39;&#39;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;exec sp_executesql @sql&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;set @iRow=@@rowcount<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;set @iResult=@iResult+@iRow<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if @iRow&gt;0 <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;begin<br/>&nbsp;&nbsp;&nbsp;&nbsp; print &#39;表：&#39;+@tableName+&#39;,列:&#39;+@columnName+&#39;被更新&#39;+convert(varchar(10),@iRow)+&#39;条记录;&#39;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fetch next from cur1 into @columnName<br/><br/><br/>end<br/>close cur1<br/>deallocate cur1<br/><br/>fetch next from cur into @tableName,@tbID<br/>end<br/>print &#39;数据库共有&#39;+convert(varchar(10),@iResult)+&#39;条记录被更新!!!&#39;<br/><br/>close cur<br/>deallocate cur<br/>set nocount off<br/>/*****以上为操作实体******/<br/></div></div>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.yes1000.com/asp/sql%2Dreplace%2Dall%2DMalicious%2Dcode.htm" /> 
	  <id>http://www.yes1000.com/asp/sql%2Dreplace%2Dall%2DMalicious%2Dcode.htm</id>
  </entry>	
		
</feed>
