<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title><![CDATA[460 是就行 ！]]></title>
        <image>
        <title>http://hi.baidu.com</title>
        <link>http://hi.baidu.com</link>
        <url>http://img.baidu.com/img/logo-hi.gif</url>
        </image>
<description><![CDATA[TAKE CARE I WANT TO SLEEP 睡着的人不容易流泪 TAKE CARE I WANT TO SLEEP 睡着的人可以自由的飞]]></description>
<link>http://hi.baidu.com/454191</link>
<language>zh-cn</language>
<generator>www.baidu.com</generator>
<ttl>5</ttl>


<item>
        <title><![CDATA[康师傅不地道，都市报道不报道！小民以后不再打报告。]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/94bc1ebf3797c20c18d81f65.html]]></link>
        <description><![CDATA[
		
		<p> </p>
<p> </p>
<p> </p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/2008%20%CE%FC%D2%FD%D7%C5%CA%C0%BD%E7">2008 吸引着世界</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/94bc1ebf3797c20c18d81f65.html#comment">查看评论</a>]]></description>
        <pubDate>2008年08月08日 星期五  下午 03:47</pubDate>
        <category><![CDATA[2008 吸引着世界]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/94bc1ebf3797c20c18d81f65.html</guid>
</item>

<item>
        <title><![CDATA[ASP PAGEVIEW]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/fcdc49502637da6484352484.html]]></link>
        <description><![CDATA[
		
		<p>&lt;% <br>
'※------------------------些为ASP网页程序序分页类-----------------------※ <br>
'※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※ <br>
' <br>
'说明部分:外部可访问函数: <br>
' 【GetPerPage】 整型 返回当前页 <br>
' 【GetTotalPage】 整型 返回总页数 <br>
' 【GetStartEndInfo】 数组 返回首尾号 <br>
' 【GetStart】 整型 返回查询语句开始取数 <br>
' 【GetEnd】 整型 返回查询语句结束取数 <br>
' 【GetPerNextInfo】 数组 返回上下页数字 <br>
' 【GetPerNextMoreInfo】 数组 返回上几页下几页数字 <br>
' 【GetPerNext】 数组 返回封装的上下页 <br>
' 【GetPerNextMore】 数组 返回封装的上几页下几页 <br>
' 【GetPageHeader】 字符串 返回封装分页头信息 <br>
' 【GetPageBody】 字符串 返回封装的分页主体信息 <br>
' 【GetPageEnd】 字符串 返回封装的分页尾部信息 <br>
' 【PageInfo】 字符串 返回封装的完整分页信息 <br>
' 【PageList】 封装的分页主体执行函数 <br>
'使用说明: <br>
' 在所使用的文件中Include()本文件,使用New操作符新创建一个本对象。新创建对象时需设置构造函数所需参数 <br>
' 参数说明如下构造函数说明处！</p>
<p>Class PageList <br>
'-------------------------定义类中用到的全局变量---------------------- <br>
Private PerPage '当前页数 <br>
Private PerLimit '当前每页显示条数 <br>
Private PerPageLimit '当前每页显示页数 <br>
Private TotalNums '当前分页中的总条数 <br>
Private TotalPage '当前分页中总页数 <br>
Private PageUrl '定义当前网页路径 <br>
Private PageStart '定义当前开始末ID <br>
Private PageEnd '定义当前结束ID <br>
Private PageStyle '定主当前分页显示样式 <br>
Private PageHeader '定义显示头部分 <br>
Private PageBody '定义显示主体部分 <br>
Private PageBottom '定义显示尾部分 <br>
Private DisplayInfo</p>
<p>'-----------------------------------初始化所有固定变量------------------------------- <br>
'入口参数: pageParameter(0） :信息总条数 <br>
'pageParameter(1）:每页显示条数 <br>
'pageParameter(2）:每页显示页数 <br>
'styleParameter(0):动静态风格，true为动态 false为静态 no为不显示 <br>
'styleParameter(1):前几页后几页,上一页下一页风格.true为前几页 false为上一页 no为不显示 <br>
'styleParameter(2):设置跳转函数true为下拉 false为submit加input no为不显示 <br>
'styleParameter(3):设置是否显示主体部分</p>
<p>'初始化对像函数 <br>
Private Sub Class_Initialize() <br>
On Error Resume Next <br>
Set PageStyle = CreateObject(&quot;Scripting.Dictionary&quot;) <br>
PageStyle.Add &quot;DS&quot;,&quot;false&quot; <br>
PageStyle.Add &quot;PN&quot;,&quot;true&quot; <br>
PageStyle.Add &quot;JP&quot;,&quot;true&quot; <br>
PageStyle.Add &quot;BY&quot;,&quot;true&quot; <br>
PerPage=cint(Request.QueryString(&quot;page&quot;)) <br>
End Sub</p>
<p>'在此说明：如果设置为动态的、上一页下一页风格则为中部动态。如果设置为静态则只能为上几页和下几页 <br>
' 如果设置为动态的、上几页下几页风格则为步进动态 <br>
Public Property Let InitPara(PLRs) <br>
If isArray(PLRs) Then <br>
TotalNums=PLRs(0) <br>
PerLimit=PLRs(1) <br>
PerPageLimit=PLRs(2) <br>
Else <br>
TotalNums=1 <br>
PerLimit=1 <br>
PerPageLimit=1 <br>
End If <br>
End Property <br>
Public Property Let DisplayStyle(styleParameter) <br>
If isArray(styleParameter) Then <br>
PageStyle.Item(&quot;DS&quot;)=styleParameter(0) '动态样式 <br>
PageStyle.Item(&quot;PN&quot;)=styleParameter(1) '上下页样式 <br>
PageStyle.Item(&quot;JP&quot;)=styleParameter(2) '表单样式风格 <br>
PageStyle.Item(&quot;BY&quot;)=styleParameter(3) '设置主体部分风格 <br>
End If <br>
End Property <br>
'-------------定义得到前台显示变量函数--------------- <br>
Public Property Get PageInfo() <br>
PageInfo=DisplayInfo <br>
End Property <br>
'-------------定义取得当前分页中的当前页函数------------------------------ <br>
Public ProPerty Get GetPerPage() <br>
GetPerPage=PerPage <br>
End ProPerty <br>
'-------------定义取得当前分页类中总页数函数------------------------------ <br>
Public ProPerty Get GetTotalPage() <br>
GetTotalPage=TotalPage <br>
End ProPerty</p>
<p>Public ProPerty Get GetStart() <br>
GetStart=(PerPage-1)*PerLimit+1 <br>
End ProPerty <br>
'-----------------定义取得当前页中信息首尾号函数--------------------------- <br>
Public Property Get GetEnd() <br>
Dim Ends <br>
Ends=GetStart()+PerLimit-1 <br>
If Ends&gt;TotalNums Then Ends=TotalNums <br>
GetEnd=Ends <br>
End Property <br>
'--------------定义创建分面显示内容------------------------------------ <br>
Public Sub PageList() <br>
Call SetDefaultStyle() <br>
Call SetPageUrl() <br>
Call SetToTalPage() <br>
Call SetPerPage() <br>
Call SetStaticDynamic() <br>
Call SetDisplayPageInfo() <br>
End Sub</p>
<p>'------------定义设置强制风格函数---------------------------------------- <br>
Private Sub SetDefaultStyle() <br>
If PageStyle(&quot;DS&quot;)=&quot;false&quot; Then <br>
If PageStyle(&quot;PN&quot;)&lt;&gt;&quot;no&quot; Then PageStyle(&quot;PN&quot;)=&quot;true&quot; <br>
End If <br>
If PageStyle(&quot;BY&quot;)=&quot;no&quot; Then PageStyle(&quot;PN&quot;)=&quot;false&quot; <br>
End Sub</p>
<p>'-------------定认取得当前网页路径函数---------------------------------- <br>
Private Sub SetPageUrl() <br>
On Error Resume Next <br>
Dim queryString <br>
Dim tmp_str <br>
Dim tmp_key,tmp_array <br>
queryString =Request.ServerVariables(&quot;QUERY_STRING&quot;) <br>
queryString = Split(Request.ServerVariables(&quot;QUERY_STRING&quot;), &quot;&amp;&quot;) <br>
For Each tmp_key In queryString <br>
tmp_array = Split(tmp_key,&quot;=&quot;) <br>
If tmp_array(0)&lt;&gt;&quot;page&quot; Then <br>
tmp_str = tmp_str &amp; tmp_array(0) &amp; &quot;=&quot; &amp; tmp_array(1) &amp; &quot;&amp;&quot; <br>
End If <br>
Next <br>
PageUrl=&quot;http://&quot; &amp; Request.ServerVariables(&quot;HTTP_HOST&quot;) &amp; Request.ServerVariables(&quot;SCRIPT_NAME&quot;)&amp;&quot;?&quot;&amp;tmp_str <br>
End Sub <br>
'-------------定义设置当前分页类中总页数函数------------------------------ <br>
Private Sub SetTotalPage() <br>
TotalPage=Abs(Int(-TotalNums/PerLimit)) <br>
End Sub <br>
'--------------定义设置当前分页类中当前页数------------------------------ <br>
Private Sub SetPerPage() <br>
If PerPage&lt;=0 Then <br>
PerPage=1 <br>
elseIf PerPage&gt;TotalPage Then <br>
PerPage=TotalPage <br>
End IF <br>
End Sub <br>
'----------定义取得是否有上下页函数----------------------------------- <br>
Public Function GetPerNextInfo() <br>
Dim per,nexts <br>
If PerPage&gt;1 Then <br>
per=PerPage-1 <br>
Else <br>
per=false <br>
End If <br>
If PerPage&lt;TotalPage Then <br>
nexts=PerPage+1 <br>
Else <br>
nexts=false <br>
End If <br>
GetPerNextInfo=array(per,nexts) <br>
End Function <br>
'-----------------定义取得是否有上几页和下几页函数----------------- <br>
Public Function GetPerNextMoreInfo() <br>
Dim start,ends <br>
If PerPage&gt;PerPageLimit Then <br>
start=PageStart-1 <br>
Else <br>
start=false <br>
End If <br>
If PageEnd&lt;TotalPage Then <br>
ends=PageEnd+1 <br>
Else <br>
ends=false <br>
End If <br>
GetPerNextMoreInfo=array(start,ends) <br>
End Function <br>
'-----------------定义取得当前步进动态分页信息函数---------------------------- <br>
Private Sub SetDynamicPageInfo() <br>
PageStart=PerPage <br>
If PageStart&lt;=0 Then PageStart=1 <br>
PageEnd=PerPageLimit+PageStart-1 <br>
If PageEnd&gt;TotalPage Then PageEnd=TotalPage <br>
End Sub <br>
'-----------------定义取得当前中间动态分页信息函数---------------------------- <br>
Private Sub SetMidDynamicPageInfo() <br>
Dim add <br>
add=fix(PerPageLimit/2) <br>
PageStart=PerPage-add <br>
If PageStart&lt;=0 Then PageStart=1 <br>
PageEnd=PerPageLimit+PageStart-1 <br>
If PageEnd&gt;TotalPage Then PageEnd=TotalPage <br>
End Sub <br>
'-------------定义取得当前静态分页信息函数------------------------------- <br>
Private Sub SetStaticPageInfo() <br>
starts=PerPage/PerPageLimit <br>
If starts-fix(starts)&gt;0 Then <br>
starts=fix(starts) <br>
Else <br>
starts=starts-1 <br>
End If <br>
PageStart=starts*PerPageLimit+1 <br>
PageEnd=PageStart+PerPageLimit-1 <br>
If PageEnd&gt;TotalPage Then PageEnd=TotalPage <br>
End Sub</p>
<p>'------------定义通过判断是静动态来设置首尾号---------------- <br>
Private Sub SetStaticDynamic() <br>
If PageStyle(&quot;DS&quot;)=&quot;false&quot; Then <br>
SetStaticPageInfo() <br>
ElseIF PageStyle(&quot;DS&quot;)=&quot;true&quot; Then <br>
If PageStyle(&quot;PN&quot;)=&quot;true&quot; Then <br>
SetDynamicPageInfo() <br>
Else <br>
SetMidDynamicPageInfo() <br>
End If <br>
Else <br>
SetStaticPageInfo() <br>
End If <br>
End Sub</p>
<p>'-------------定义显示前几页和后几页函数---------------------------- <br>
Public Function GetPerNextMore(mark) <br>
Dim tmp_str <br>
If PageStyle(&quot;PN&quot;)=&quot;false&quot; or PageStyle(&quot;PN&quot;)=&quot;no&quot; Then <br>
PageBody=PageBody&amp;&quot;&quot; <br>
GetPerNextMore=&quot;&quot; <br>
Exit Function <br>
End If <br>
IfPerNextArray=GetPerNextMoreInfo() <br>
If PageStyle(&quot;DS&quot;)=&quot;true&quot; and PageStyle(&quot;DS&quot;)=&quot;true&quot; Then <br>
IfPerNextArray(0)=IfPerNextArray(0)+1-PerPageLimit <br>
If IfPerNextArray(0)&lt;=0 Then IfPerNextArray(0)=1 <br>
If PerPage=1 Then IfPerNextArray(0)=false <br>
End If <br>
If IfPerNextArray(0) and mark=&quot;true&quot; Then tmp_str=&quot;&lt;font face='Webdings'&gt;&lt;a href=&quot;&amp;PageUrl&amp;&quot;page=&quot;&amp;IfPerNextArray(0)&amp;&quot; title=前&quot;&amp;PerPageLimit&amp;&quot;页&gt;9&lt;/a&gt;&lt;/font&gt;&quot;&amp;chr(10) <br>
If IfPerNextArray(1) and mark&lt;&gt;&quot;true&quot; Then tmp_str=&quot;&lt;font face='Webdings'&gt;&lt;a href=&quot;&amp;PageUrl&amp;&quot;page=&quot;&amp;IfPerNextArray(1)&amp;&quot; title=后&quot;&amp;PerPageLimit&amp;&quot;页&gt;:&lt;/a&gt;&lt;/font&gt;&quot;&amp;chr(10) <br>
PageBody=PageBody&amp;tmp_str <br>
GetPerNextMore=tmp_str <br>
End Function</p>
<p>'-------------定义显示前一页和后一页函数---------------------------- <br>
Public Function GetPerNext(mark) <br>
Dim tmp_str <br>
If PageStyle(&quot;PN&quot;)&lt;&gt;&quot;false&quot; Then <br>
GetPerNext=&quot;&quot; <br>
Exit Function <br>
End If <br>
IfPerNextArray=GetPerNextInfo() <br>
If IfPerNextArray(0) and mark=&quot;true&quot; Then tmp_str=&quot;&lt;font face='Webdings'&gt;&lt;a href=&quot;&amp;PageUrl&amp;&quot;page=&quot;&amp;IfPerNextArray(0)&amp;&quot; title= 前一页&gt;3&lt;/a&gt;&lt;/font&gt; &quot; <br>
If IfPerNextArray(1) and mark&lt;&gt;&quot;true&quot; Then tmp_str=&quot;&lt;font face='Webdings'&gt;&lt;a href=&quot;&amp;PageUrl&amp;&quot;page=&quot;&amp;IfPerNextArray(1)&amp;&quot; title=后一页&gt;4&lt;/a&gt;&lt;/font&gt;&quot; <br>
PageBody=PageBody&amp;tmp_str <br>
GetPerNext=tmp_str <br>
End Function</p>
<p>'-------------------定义显示分页头函数------------------- <br>
Public Function GetPageHeader() <br>
Dim tmp_str <br>
If PageStyle(&quot;DS&quot;)=&quot;no&quot; Then <br>
GetPageHeader=&quot;&quot; <br>
Exit Function <br>
End If <br>
tmp_str=&quot;第&quot;&amp;PerPage&amp;&quot;页/共&quot;&amp;GetTotalPage()&amp;&quot;页 共&quot;&amp;TotalNums&amp;&quot;条&quot; <br>
PageHeader=&quot;&lt;div style='float:left;display:inline;width:25%'&gt;&quot;&amp;tmp_str&amp;&quot;&lt;/div&gt;&quot;&amp;Chr(10) <br>
GetPageHeader=tmp_str <br>
End Function</p>
<p>'-------------------定义显示分页主体函数------------------- <br>
Public Function GetPageBody() <br>
If PageStyle(&quot;BY&quot;)=&quot;no&quot; Then <br>
GetPageBody=&quot;&quot; <br>
Exit Function <br>
End IF <br>
For PageStart=PageStart to PageEnd <br>
If PerPage=PageStart Then <br>
PageBody=PageBody&amp;&quot;&lt;a href=&quot;&amp;PageUrl&amp;&quot;page=&quot;&amp;PageStart&amp;&quot; title=第&quot;&amp;PageStart&amp;&quot;页&gt;&lt;span style='color:#F00'&gt;&lt;b&gt;[&quot;&amp;PageStart&amp;&quot;]&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&quot;&amp;Chr(10) <br>
Else <br>
PageBody=PageBody&amp;&quot;&lt;a href=&quot;&amp;PageUrl&amp;&quot;page=&quot;&amp;PageStart&amp;&quot; title=第&quot;&amp;PageStart&amp;&quot;页&gt;[&quot;&amp;PageStart&amp;&quot;]&lt;/a&gt;&quot;&amp;Chr(10) <br>
End If <br>
Next <br>
GetPageBody=PageBody <br>
End Function</p>
<p>'-------------------定义显示分页主体函数------------------- <br>
Private Sub SetPageBody() <br>
GetPerNextMore(&quot;true&quot;) <br>
GetPerNext(&quot;true&quot;) <br>
GetPageBody() <br>
GetPerNextMore(&quot;false&quot;) <br>
GetPerNext(&quot;false&quot;) <br>
PageBody=&quot;&lt;div style='float:left;display:inline;width:45%;text-align:center'&gt;&quot;&amp;PageBody&amp;&quot;&lt;/div&gt;&quot;&amp;Chr(10) <br>
End Sub</p>
<p>'-------------------定义显示分页尾函数------------------- <br>
Public Function GetPageEnd() <br>
Dim tmp_str <br>
If PageStyle(&quot;JP&quot;)=&quot;no&quot; Then <br>
GetPageEnd=&quot;&quot; <br>
PageBottom=&quot;&quot; <br>
Exit Function <br>
ElseIF PageStyle(&quot;JP&quot;)=&quot;true&quot; Then <br>
tmp_str=&quot;跳到&lt;select name='pageSelect' onChange='document.location=this.value'&gt;&quot; <br>
for i=1 to GetTotalPage() <br>
If i=PerPage Then <br>
tmp_str=tmp_str&amp;&quot;&lt;option value=&quot;&amp;PageUrl&amp;&quot;page=&quot;&amp;i&amp;&quot; selected&gt;&quot;&amp;i&amp;&quot;&lt;/option&gt;&quot; <br>
Else <br>
tmp_str=tmp_str&amp;&quot;&lt;option value=&quot;&amp;PageUrl&amp;&quot;page=&quot;&amp;i&amp;&quot;&gt;&quot;&amp;i&amp;&quot;&lt;/option&gt;&quot; <br>
End If <br>
Next <br>
tmp_str=tmp_str&amp;&quot;&lt;/select&gt;页&quot; <br>
ElseIF PageStyle(&quot;JP&quot;)=&quot;false&quot; Then <br>
tmp_str=&quot;&lt;input type='text' name='pageSelect' id='pageSelect' size='3' maxlength='5' value='&quot;&amp;PerPage&amp;&quot;'&gt;&quot; <br>
tmp_str=tmp_str&amp;&quot; &lt;input type='button' value='GO' onClick=&quot;&quot;document.location='&quot;&amp;PageUrl&amp;&quot;page='+ pageSelect.value&quot;&quot;&gt;&quot; <br>
End If <br>
PageBottom=&quot;&lt;div style='float:right;display:inline;width:20%'&gt;&quot;&amp;tmp_str&amp;&quot;&lt;/div&gt;&quot;&amp;Chr(10) <br>
GetPageEnd=tmp_str <br>
End Function</p>
<p>'-------------定义得到前台显示变量函数--------------- <br>
Private Sub SetDisplayPageInfo() <br>
GetPageHeader() <br>
SetPageBody() <br>
GetPageEnd() <br>
DisplayInfo=&quot;&lt;div style='margin:5px;'&gt;&quot;&amp;chr(10)&amp;PageHeader&amp;PageBody&amp;PageBottom&amp;&quot;&lt;/div&gt;&quot; <br>
End Sub <br>
End Class <br>
%&gt;</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%D4%F8%BE%AD%CD%B7%CC%DB%B9%FD%B5%C4%B4%FA%C2%EB">曾经头疼过的代码</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/fcdc49502637da6484352484.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月21日 星期一  下午 05:04</pubDate>
        <category><![CDATA[曾经头疼过的代码]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/fcdc49502637da6484352484.html</guid>
</item>

<item>
        <title><![CDATA[人肉搜索 永远置顶 黑名单 相信百度的力量]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/8ef79b5491e12151574e00c9.html]]></link>
        <description><![CDATA[
		
		<p> </p>
<div forimg="1"><a target="_blank" href="http://hi.baidu.com/454191/album/%C8%CB%C8%E2%CB%D1%CB%F7%20%CF%E0%D0%C5%B0%D9%B6%C8%B5%C4%C1%A6%C1%BF#/454191/album/%CA%C7%D5%E6%CA%C7%BC%D9/index/0"><img class="blogimg" border="0" small="0" src="http://hiphotos.baidu.com/454191/pic/item/9546def432f5a9f97709d737.jpg"></a>
<div forimg="1"><a target="_blank" href="http://hi.baidu.com/454191/album/%C8%CB%C8%E2%CB%D1%CB%F7%20%CF%E0%D0%C5%B0%D9%B6%C8%B5%C4%C1%A6%C1%BF"><img class="blogimg" border="0" small="0" src="http://hiphotos.baidu.com/454191/pic/item/6dd0e69bddc731a3c8eaf49c.jpg"></a></div>
</div> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/8ef79b5491e12151574e00c9.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月14日 星期一  下午 04:06</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/8ef79b5491e12151574e00c9.html</guid>
</item>

<item>
        <title><![CDATA[一个动物饲料销售人员的自白--我们基本不吃肉]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/3cd5d855401310c1b745ae92.html]]></link>
        <description><![CDATA[
		
		<p> </p>
<p>&nbsp;&nbsp;  本人从事饲料销售多年，所有的饲料都是卖给农民养殖户；农民养猪似乎是祖传的特征，以前农民都是用水潲喂猪，几多年前农民与时俱进居然用起了饲料，饲料这东西确实也是好，以前要一年才养肥的猪到现在最少的也就4个多月就可以长到200多斤。<br>
 <br>
　　在农民心里，什么样的饲料才是好饲料呢？答案是 ： <br>
　　1、猪吃了长得快的饲料 <br>
　　2、猪吃了长得皮红毛亮的饲料 <br>
　　3、猪吃了马上就睡的饲料 <br>
　　4、猪吃了粪便是黑色的饲料 </p>
<p>　　农民一般就把这几个标准综合起来确定一种饲料的好坏。这么一来，让饲料厂家和销售商绞尽脑汁的问题出现了：怎么样才能使一种饲料能达到这几种效果呢？当然通过平常的在饲料中添加鱼粉，豆粕的方法是肯定行不通了，只有找&ldquo;捷径&rdquo;来达到目的。 </p>
<p>　　我销售饲料这么多年，和大大小小的饲料厂30多家合作过，我亲眼看到的一般都是这么几个办法：<br>
 <br>
　　1、在饲料中添加激素刺激猪的生长速度，而这种激素肯定要价格低廉，价格低廉也就决定了这种激素非常低劣，这种低劣的激素对人体有很大的害处，特别是对发育的年轻人，能使不到年龄的女孩子提早来月经，使老年人诱发疾病等等。 </p>
<p>　　2、在饲料中添加砷制剂来使猪皮红毛亮。砷，这不要我说了吧？谁都知道是剧毒品。（农民以为皮红毛亮是有营养的表现，其实是猪轻微的中毒） </p>
<p>　　3、在饲料中添加镇静剂，如本巴比妥等催眠镇静药。有的人吃了猪肉有昏昏欲睡的感觉就是这个原因，长期吃这种猪肉使人的头脑迟钝。（农民以为猪吃了睡觉是好饲料）<br>
 <br>
　　4、不知道为什么农民认为猪拉黑色的大便也是好饲料的特征，其实正常的猪屎是黄褐色的，因为农民有此爱好，所以饲料厂家就拼命的添加高铜，这样才能使大便变黑。猪肉中含有高铜，人过多的食用对智商和健康有巨大的影响。</p>
<p>　　用含有大量药物、化学制剂的添加剂来喂养各种有血有肉的动物，人类的贪婪使各种动物生命变得如此之短，再短。而整天食用这些动物的人类呢？这些化学药物、化学制剂也会被人摄入体内，在人体内沉积，对人体的生长发育造成极坏影响，诱发人体产生各种长期的不适症状、痛苦病症以至于最终诱发癌症。<br>
　　看了上面我说的，大家心里应该有数了吧。 </p>
<p>　　另外，告诉大家：猪肝，猪血，猪肺是含毒素最多的，最好不要食用。 </p>
<p>　　此外还告诉大家一个秘密，饲料相关的生产厂家和销售人员基本上是不吃肉的。</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/3cd5d855401310c1b745ae92.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月13日 星期日  下午 10:09</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/3cd5d855401310c1b745ae92.html</guid>
</item>

<item>
        <title><![CDATA[黄话连篇]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/b63a668f00ae6eebf11f3681.html]]></link>
        <description><![CDATA[
		
		命运就像强奸，你反抗不了就要学会享受.
<p>工作就像轮奸，你不行了别人就上.</p>
<p>生活就像自慰，什么都得靠自己双手</p>
<p>学习就像嫖娼，出完钱后又出力</p>
<p>工资就像例假，一月不来你就傻眼</p>
<p>谈判就像口交，费尽了口舌也就那点收获</p>
<p>捐款就像发情，一想起来马上就要</p>
<p>奖金就像阴毛，掉的要比长的多</p>
<p>领导就像阴道，总是欺软怕硬</p>
<p>开会就像乱轮，搞不清谁该搞谁</p>
<p>兄弟像避孕套，桶多大的娄子都帮你兜着</p>
<p>看贴不回的就像阳痿，明明看爽了，就是没动作！！！</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%BB%E7%B6%CE%D7%D3%28%BF%BD%B1%B4%B2%BB%C8%DD%D2%D7%29">荤段子(拷贝不容易)</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/b63a668f00ae6eebf11f3681.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月13日 星期日  下午 09:47</pubDate>
        <category><![CDATA[荤段子(拷贝不容易)]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/b63a668f00ae6eebf11f3681.html</guid>
</item>

<item>
        <title><![CDATA[女人的漏洞和男人的长处]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/c3fce47ad547b8e82f73b3ba.html]]></link>
        <description><![CDATA[
		
		<p>女人有两个优点，但有一个漏洞；男人虽然没有优点，却有一个长处；男人经常抓住女人的两个优点，用 自己的长处弥补女人的漏洞，这叫天衣无缝。男人为何聪明？男人有两个头，女人为何爱吃？女人有两张 嘴，男女为何结婚？男人想通了，女人想开了，又为何离婚？男人知道深浅了！


<a href="http://www.crxh.cn/archives/2008/07/09/2604.html"></a></p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%BB%E7%B6%CE%D7%D3%28%BF%BD%B1%B4%B2%BB%C8%DD%D2%D7%29">荤段子(拷贝不容易)</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/c3fce47ad547b8e82f73b3ba.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月10日 星期四  下午 08:40</pubDate>
        <category><![CDATA[荤段子(拷贝不容易)]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/c3fce47ad547b8e82f73b3ba.html</guid>
</item>

<item>
        <title><![CDATA[你打过炮吗]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/332275ef5e3e6d13fcfa3c74.html]]></link>
        <description><![CDATA[
		
		<p><br>
 <br>
　　测听力，用一个耳机，发出不同音量和频率的声音，测试你是否听得到。我一同事怎么也听不到，医生（注：年轻女医生）不停的放大音量，可还是听不见。　</p>
<p>　　于是女大夫问：&ldquo;你打过炮吗？&rdquo;一下子满屋寂静……我同事憋的脸红脖子粗小声说：&ldquo;打过，可是有什么关系吗？&rdquo;</p>
<p>　　&ldquo;哦，我是说你是不是退伍兵。&rdquo;又晕倒了一片！<br>
本文来源于 荤段子 , 原文地址:http://hunduanzi.blogspot.com/2008/04/blog-post_3713.html</p>
<p><br>
 </p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%BB%E7%B6%CE%D7%D3%28%BF%BD%B1%B4%B2%BB%C8%DD%D2%D7%29">荤段子(拷贝不容易)</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/332275ef5e3e6d13fcfa3c74.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月09日 星期三  下午 08:47</pubDate>
        <category><![CDATA[荤段子(拷贝不容易)]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/332275ef5e3e6d13fcfa3c74.html</guid>
</item>

<item>
        <title><![CDATA[那我亲嘴好了…]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/07430b3325b12146ac4b5f6b.html]]></link>
        <description><![CDATA[
		
		<p><br>
　　男：我好喜欢你喔……我真的很喜欢你……我可不可以亲亲你？</p>
<p>　　女：不要脸……</p>
<p>　　男：那我亲嘴好了……<br>
本文来源于 荤段子 , 原文地址:http://hunduanzi.blogspot.com</p>
<p><br>
 </p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%BB%E7%B6%CE%D7%D3%28%BF%BD%B1%B4%B2%BB%C8%DD%D2%D7%29">荤段子(拷贝不容易)</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/07430b3325b12146ac4b5f6b.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月09日 星期三  下午 08:46</pubDate>
        <category><![CDATA[荤段子(拷贝不容易)]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/07430b3325b12146ac4b5f6b.html</guid>
</item>

<item>
        <title><![CDATA[你家的母狗]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/d2397344dd10a987b3b7dc6b.html]]></link>
        <description><![CDATA[
		
		<p><br>
 <br>
一男子在公园找他的狗，後来发现他的狗正与一位女孩的狗在办事。望著满脸羞红的<br>
女孩。男子一脸挑逗的说：像那样的事，我也会做喔！只听那女孩不好意思的说：那…<br>
那你就试试看啊。反正那是你家的母狗。<br>
本文来源于 荤段子 , 原文地址:http://hunduanzi.blogspot.com</p>
<p><br>
 </p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%BB%E7%B6%CE%D7%D3%28%BF%BD%B1%B4%B2%BB%C8%DD%D2%D7%29">荤段子(拷贝不容易)</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/d2397344dd10a987b3b7dc6b.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月09日 星期三  下午 08:45</pubDate>
        <category><![CDATA[荤段子(拷贝不容易)]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/d2397344dd10a987b3b7dc6b.html</guid>
</item>

<item>
        <title><![CDATA[打赌]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/17820216e8075b1d962b436a.html]]></link>
        <description><![CDATA[
		
		<p><br>
<br>
小明天性好與人打賭，而且從未輸過，他老爸對此非常擔心，深怕長大會成為一個賭徒，於是打電話給小明美麗的女導師，導師答應明天放學後會將小明留下開導。 小明天性好与人打赌，而且从未输过，他老爸对此非常担心，深怕长大会成为一个赌徒，于是打电话给小明美丽的女导师，导师答应明天放学后会将小明留下开导。 隔天放學後，老師將小明留下開導，小明聽了聽後跟老師說：好吧，那我再跟妳賭一次，若我輸了，以後決不再跟人打賭，老師也答應了。 隔天放学后，老师将小明留下开导，小明听了听后跟老师说：好吧，那我再跟妳赌一次，若我输了，以后决不再跟人打赌，老师也答应了。 小明：老師，我打賭一千元妳不敢把衣服脫光給我看。 小明：老师，我打赌一千元妳不敢把衣服脱光给我看。 老師看四下無人，心想著，今天終於要給你個教訓了，於是就把衣服脫光，小明看了看後，把一千元拿給老師，然後低著頭，不發一語的回家了。 老师看四下无人，心想着，今天终于要给你个教训了，于是就把衣服脱光，小明看了看后，把一千元拿给老师，然后低着头，不发一语的回家了。 晚上， 老師自豪的打電話給小明的父親，表示她已讓小明改正了打賭的惡習。 晚上，老师自豪的打电话给小明的父亲，表示她已让小明改正了打赌的恶习。 小明的父親說：未必，老師，小明昨晚和我打賭五仟元說妳會把衣服脫光給他看，而我也躲在教室後面證實是我輸了。 小明的父亲说：未必，老师，小明昨晚和我打赌五仟元說妳会把衣服脱光给他看，而我也躲在教室后面证实是我输了。<br>
本文来源于 荤段子 , 原文地址:http://hunduanzi.blogspot.com</p>
<p><br>
 </p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%BB%E7%B6%CE%D7%D3%28%BF%BD%B1%B4%B2%BB%C8%DD%D2%D7%29">荤段子(拷贝不容易)</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/17820216e8075b1d962b436a.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月09日 星期三  下午 08:45</pubDate>
        <category><![CDATA[荤段子(拷贝不容易)]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/17820216e8075b1d962b436a.html</guid>
</item>

<item>
        <title><![CDATA[绅士风度]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/717fd13b029639ef14cecb6a.html]]></link>
        <description><![CDATA[
		
		<p><br>
舞會上玉面對剛認識的女孩說:「舞會結束後,讓我送你回去好嗎? 我保證絕對不會摸妳、親妳,我一定會保持紳士的風度。」 女孩憤怒的說:「那我看你還是別送我好了。」 舞会上玉面对刚认识的女孩说:「舞会结束后,让我送你回去好吗?我保证绝对不会摸妳、亲妳,我一定会保持绅士的风度。」女孩愤怒的说:「那我看你还是别送我好了。」<br>
本文来源于 荤段子 , 原文地址:http://hunduanzi.blogspot.com</p>
<p><br>
 </p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%BB%E7%B6%CE%D7%D3%28%BF%BD%B1%B4%B2%BB%C8%DD%D2%D7%29">荤段子(拷贝不容易)</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/717fd13b029639ef14cecb6a.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月09日 星期三  下午 08:44</pubDate>
        <category><![CDATA[荤段子(拷贝不容易)]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/717fd13b029639ef14cecb6a.html</guid>
</item>

<item>
        <title><![CDATA[播音员的口误]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/a329a9897673ffb60e244469.html]]></link>
        <description><![CDATA[
		
		<p><br>
某气象播报员:今天天气晴时多云偶阵雨;北部地区阴晴不定出门恐遇大雷雨;北部朋友出门请别忘了携带雨具.中南部地区 阳光高照紫外线指数偏高;外出时恐有晒伤之虞; 出门时请带阳具.........<br>
本文来源于 荤段子 , 原文地址:http://hunduanzi.blogspot.com</p>
<p><br>
 </p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%BB%E7%B6%CE%D7%D3%28%BF%BD%B1%B4%B2%BB%C8%DD%D2%D7%29">荤段子(拷贝不容易)</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/a329a9897673ffb60e244469.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月09日 星期三  下午 08:43</pubDate>
        <category><![CDATA[荤段子(拷贝不容易)]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/a329a9897673ffb60e244469.html</guid>
</item>

<item>
        <title><![CDATA[小浣熊和妓女]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/20dcded7fc0167d8a044df69.html]]></link>
        <description><![CDATA[
		
		<p><br>
<br>
有一天，一只小浣熊跑到&quot;妓&quot;艺中心... 然後就偷偷潜入一间&quot;暗索索&quot;的房间~ 看到了一个妓女躺在床上..就偷跑过去舔她的下体!! 过了不久，小熊要开溜了...却 被妓女叫住~~ 妓女说:&quot;小浣熊，你还没付钱哟~&quot; 小浣熊说:&quot;我为什麽要付钱钱呀???&quot; 妓女於是搬出&quot;辞海&quot;..查阅&quot;妓女&quot;一词给小熊看!! 妓女:&quot;小浣熊，你看..字典上写着...... &quot;妓女&quot;...以性行为交易金钱为职业的人!! 妓女:&quot;所以你要付钱钱...了解吗??&quot; 小浣熊也迅速的将辞海翻到有&quot;小浣熊&quot;的这一面...指给妓女看!! 只见字典上写着&quot;小 浣熊&quot;....&quot;天生喜好吃杂草的动物!!&quot;<br>
本文来源于 荤段子 , 原文地址:http://hunduanzi.blogspot.com</p>
<p><br>
 </p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%BB%E7%B6%CE%D7%D3%28%BF%BD%B1%B4%B2%BB%C8%DD%D2%D7%29">荤段子(拷贝不容易)</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/20dcded7fc0167d8a044df69.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月09日 星期三  下午 08:43</pubDate>
        <category><![CDATA[荤段子(拷贝不容易)]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/20dcded7fc0167d8a044df69.html</guid>
</item>

<item>
        <title><![CDATA[把柄和漏洞]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/9cd71a953f625d4ed0135e68.html]]></link>
        <description><![CDATA[
		
		<p><br>
 <br>
新婚之夜，一对新人正尝试如何做爱．．． 突然传来女人兴奋的笑声说道：「我终於握到你的把柄！」 但男人也不甘势示弱的叫着说：「我也探到你的漏洞！」<br>
本文来源于 荤段子 , 原文地址:http://hunduanzi.blogspot.com</p>
<p><br>
 </p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%BB%E7%B6%CE%D7%D3%28%BF%BD%B1%B4%B2%BB%C8%DD%D2%D7%29">荤段子(拷贝不容易)</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/9cd71a953f625d4ed0135e68.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月09日 星期三  下午 08:42</pubDate>
        <category><![CDATA[荤段子(拷贝不容易)]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/9cd71a953f625d4ed0135e68.html</guid>
</item>

<item>
        <title><![CDATA[皇上皇后上厕所]]></title>
        <link><![CDATA[http://hi.baidu.com/454191/blog/item/6aca6b381c71bfc7d4622568.html]]></link>
        <description><![CDATA[
		
		<p><br>
<br>
有一天，太监正在想，皇上的每一件事都这麽的隆重．．．为何只有上厕所不隆重 呢？於是，太监决定隆重一下。 有一天，皇上进茅厕，太监便说：「奏乐，掀龙袍，抬龙根，撒龙尿，抖龙头，关龙 袍。」 不久後，皇后便也想隆重一下，太监答应，於是皇后便进了茅厕。 太监高喊着：「奏乐，掀凤袍，开凤眼，撒凤尿，关凤眼。」<br>
本文来源于 荤段子 , 原文地址:http://hunduanzi.blogspot.com</p>
<p><br>
 </p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/454191/blog/category/%BB%E7%B6%CE%D7%D3%28%BF%BD%B1%B4%B2%BB%C8%DD%D2%D7%29">荤段子(拷贝不容易)</a>&nbsp;<a href="http://hi.baidu.com/454191/blog/item/6aca6b381c71bfc7d4622568.html#comment">查看评论</a>]]></description>
        <pubDate>2008年07月09日 星期三  下午 08:42</pubDate>
        <category><![CDATA[荤段子(拷贝不容易)]]></category>
        <author><![CDATA[454191]]></author>
		<guid>http://hi.baidu.com/454191/blog/item/6aca6b381c71bfc7d4622568.html</guid>
</item>


</channel>
</rss>