<?xml version="1.0" encoding="utf-8" ?>















<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="zh_CN">
<title><![CDATA[行政管理、法律、信息化建设]]></title>
<link rel="alternate" type="text/html" href="http://fanshaoran.blog.bokee.net"/>
<modified>2007-07-06T15-24-41 CST</modified>
<tagline type="text/html" mode="escaped"><![CDATA[互联网是一次新商机,每一次新商机到来,都会造就一批富翁.每一批富翁的造就是:当别人不明白时候,他明白在做什么;当别人不理解时候,他理解在做什么,当别人明白了,他富有了;当别人理解了,他成功了.-李嘉诚]]></tagline>
<generator url="http://www.bokee.net/" version="2.0">bokee.net</generator>
<copyright>Copyright (c) 2005,  fanshaoran</copyright>


<entry>
<title>SQL SERVER 与ACCESS、EXCEL的数据转换</title>
<link rel="alternate" type="text/html" href="http://www.bokee.net/blogmodule/weblogcomment_viewEntry/849284.html"/>
<issued>2007-07-06T15-24-41 CST</issued> 
<created>2007-07-06T15-24-41 CST</created>
<modified>2008-08-30T00-48-59Z</modified>
<id>tag:fanshaoran.blogchina.com,2005://849284</id>
<author>
<name>fanshaoran</name>
<url>http://www.bokee.net/blogmodule/weblogcomment_index/fanshaoran.html</url>
</author>
<dc:subject>信息化建设</dc:subject>
<content type="text/html" mode="escaped" xml:lang="zh_CN" xml:base="http://www.bokee.net"> 
<![CDATA[<pre>SQL SERVER 与ACCESS、EXCEL的数据转换


熟悉SQL SERVER 2000的数据库管理员都知道，其DTS可以进行数据的导入导出，其实，我们也可以使用Transact-SQL语句进行导入导出操作。在Transact-SQL语句中，我们主要使用OpenDataSource函数、OPENROWSET 函数，关于函数的详细说明，请参考SQL联机帮助。利用下述方法，可以十分容易地实现SQL SERVER、ACCESS、EXCEL数据转换，详细说明如下：

一、SQL SERVER 和ACCESS的数据导入导出
常规的数据导入导出：
使用DTS向导迁移你的Access数据到SQL Server，你可以使用这些步骤: 
　　○1在SQL SERVER企业管理器中的Tools（工具）菜单上，选择Data Transformation 
　　○2Services（数据转换服务），然后选择  czdImport Data（导入数据）。 
　　○3在Choose a Data Source（选择数据源）对话框中选择Microsoft Access as the Source，然后键入你的.mdb数据库(.mdb文件扩展名)的文件名或通过浏览寻找该文件。 
　　○4在Choose a Destination（选择目标）对话框中，选择Microsoft OLE　DB Prov ider for SQL　Server，选择数据库服务器，然后单击必要的验证方式。 
　　○5在Specify Table Copy（指定表格复制）或Query（查询）对话框中，单击Copy tables（复制表格）。 
    ○6在Select Source Tables（选择源表格）对话框中，单击Select All（全部选定）。下一步，完成。

Transact-SQL语句进行导入导出：
1.在SQL SERVER里查询access数据:

SELECT * 
FROM OpenDataSource( 'Microsoft.Jet.OLEDB.4.0',
'Data Source=&quot;c:\DB.mdb&quot;;User ID=Admin;Password=')...表名

2.将access导入SQL server
在SQL SERVER 里运行:
SELECT *
INTO newtable
FROM OPENDATASOURCE ('Microsoft.Jet.OLEDB.4.0', 
      'Data Source=&quot;c:\DB.mdb&quot;;User ID=Admin;Password=' )...表名

3.将SQL SERVER表里的数据插入到Access表中
在SQL SERVER 里运行：
insert into OpenDataSource( 'Microsoft.Jet.OLEDB.4.0',
  'Data Source=&quot; c:\DB.mdb&quot;;User ID=Admin;Password=')...表名 
(列名1,列名2)
select 列名1,列名2  from  sql表

实例：
insert into  OPENROWSET('Microsoft.Jet.OLEDB.4.0', 
   'C:\db.mdb';'admin';'', Test) 
select id,name from Test


INSERT INTO OPENROWSET('Microsoft.Jet.OLEDB.4.0', 'c:\trade.mdb'; 'admin'; '', 表名)
SELECT *
FROM sqltablename

二、SQL SERVER 和EXCEL的数据导入导出

1、在SQL SERVER里查询Excel数据:

SELECT * 
FROM OpenDataSource( 'Microsoft.Jet.OLEDB.4.0',
'Data Source=&quot;c:\book1.xls&quot;;User ID=Admin;Password=;Extended properties=Excel 5.0')...[Sheet1$]

下面是个查询的示例，它通过用于 Jet 的 OLE DB 提供程序查询 Excel 电子表格。
SELECT * 
FROM OpenDataSource ( 'Microsoft.Jet.OLEDB.4.0',
  'Data Source=&quot;c:\Finance\account.xls&quot;;User ID=Admin;Password=;Extended properties=Excel 5.0')...xactions

2、将Excel的数据导入SQL server :
SELECT * into newtable
FROM OpenDataSource( 'Microsoft.Jet.OLEDB.4.0',
  'Data Source=&quot;c:\book1.xls&quot;;User ID=Admin;Password=;Extended properties=Excel 5.0')...[Sheet1$]

实例:
SELECT * into newtable
FROM OpenDataSource( 'Microsoft.Jet.OLEDB.4.0',
  'Data Source=&quot;c:\Finance\account.xls&quot;;User ID=Admin;Password=;Extended properties=Excel 5.0')...xactions

3、将SQL SERVER中查询到的数据导成一个Excel文件
T-SQL代码：
EXEC master..xp_cmdshell 'bcp 库名.dbo.表名out c:\Temp.xls -c -q -S&quot;servername&quot; -U&quot;sa&quot; -P&quot;&quot;'
参数：S 是SQL服务器名；U是用户；P是密码
说明：还可以导出文本文件等多种格式

实例:EXEC master..xp_cmdshell 'bcp saletesttmp.dbo.CusAccount out c:\temp1.xls -c -q -S&quot;pmserver&quot; -U&quot;sa&quot; -P&quot;sa&quot;'

 EXEC master..xp_cmdshell 'bcp &quot;SELECT au_fname, au_lname FROM pubs..authors ORDER BY au_lname&quot; queryout C:\ authors.xls -c -Sservername -Usa -Ppassword'

在VB6中应用ADO导出EXCEL文件代码： 
Dim cn  As New ADODB.Connection
cn.open &quot;Driver={SQL Server};Server=WEBSVR;DataBase=WebMis;UID=sa;WD=123;&quot;
cn.execute &quot;master..xp_cmdshell 'bcp &quot;SELECT col1, col2 FROM 库名.dbo.表名&quot; queryout E:\DT.xls -c -Sservername -Usa -Ppassword'&quot;


4、在SQL SERVER里往Excel插入数据:

insert into OpenDataSource( 'Microsoft.Jet.OLEDB.4.0',
'Data Source=&quot;c:\Temp.xls&quot;;User ID=Admin;Password=;Extended properties=Excel 5.0')...table1 (A1,A2,A3) values (1,2,3)

T-SQL代码：
INSERT INTO  
 OPENDATASOURCE('Microsoft.JET.OLEDB.4.0',  
 'Extended Properties=Excel 8.0;Data source=C:\training\inventur.xls')...[Filiale1$]  
 (bestand, produkt) VALUES (20, 'Test')  

总结：利用以上语句，我们可以方便地将SQL SERVER、ACCESS和EXCEL电子表格软件中的数据进行转换，为我们提供了极大方便！</pre>]]>
</content>
</entry>

<entry>
<title>Asp.Net定时关闭窗口</title>
<link rel="alternate" type="text/html" href="http://www.bokee.net/blogmodule/weblogcomment_viewEntry/848087.html"/>
<issued>2007-07-06T09-18-46 CST</issued> 
<created>2007-07-06T09-18-46 CST</created>
<modified>2008-08-30T00-48-59Z</modified>
<id>tag:fanshaoran.blogchina.com,2005://848087</id>
<author>
<name>fanshaoran</name>
<url>http://www.bokee.net/blogmodule/weblogcomment_index/fanshaoran.html</url>
</author>
<dc:subject>信息化建设</dc:subject>
<content type="text/html" mode="escaped" xml:lang="zh_CN" xml:base="http://www.bokee.net"> 
<![CDATA[〈script language=&quot;JavaScript&quot;&gt;<br />function closeit() {setTimeout(&quot;self.close()&quot;,10000) //毫秒 <br />}〈/script&gt;
<p><br />〈body onload=&quot;closeit()&quot;&gt;<br />弹出窗口的内容在这儿&hellip;&hellip;<br /><br />稍候关闭本窗口&hellip;&hellip;<br />〈/body&gt;</p>]]>
</content>
</entry>

<entry>
<title>在Web应用程序中执行计划任务（多线程）</title>
<link rel="alternate" type="text/html" href="http://www.bokee.net/blogmodule/weblogcomment_viewEntry/848076.html"/>
<issued>2007-07-06T09-11-46 CST</issued> 
<created>2007-07-06T09-11-46 CST</created>
<modified>2008-08-30T16-10-04Z</modified>
<id>tag:fanshaoran.blogchina.com,2005://848076</id>
<author>
<name>fanshaoran</name>
<url>http://www.bokee.net/blogmodule/weblogcomment_index/fanshaoran.html</url>
</author>
<dc:subject>信息化建设</dc:subject>
<content type="text/html" mode="escaped" xml:lang="zh_CN" xml:base="http://www.bokee.net"> 
<![CDATA[在业务复杂的应用程序中，有时候会要求一个或者多个任务在一定的时间或者一定的时间间隔内计划进行，比如定时备份或同步数据库，定时发送电子邮件等，我们称之为计划任务。实现计划任务的方法也有很多，可以采用SQLAgent执行存储过程来实现，也可以采用Windows任务调度程序来实现，也可以使用Windows服务来完成我们的计划任务，这些方法都是很好的解决方案。但是，对于Web应用程序来说，这些方法实现起来并不是很简单的，主机服务提供商或者不能直接提供这样的服务，或者需要你支付许多额外的费用。&nbsp;本文就介绍一个直接在Web应用程序中使用的简单的方法，这个方法不需要任何额外的配置即可轻松实现。<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />由于ASP.NET站点是作为Web应用程序运行的，它并不受线程的限制，因此我们可以非常方便地在Application_Start和Application_End事件中建立和销毁一个计划任务。下面就简单介绍一下在Web站点实现计划任务的方法。我们的例子是定时往文件里添加信息，作为例子，这里把当前的时间定时地写入文件中。<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />一个计划任务的工作单元称之为一个任务（Job），下面的代码描述了对所有任务都可以被调度引擎计划执行的一个通用的接口，这里的每个任务实现了Execute方法，供调度引擎进行调用：<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;interface&nbsp;ISchedulerJob<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;void&nbsp;Execute();<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />如前所述，我们的例子是实现往文件写如字符日期，下面就是实现这一任务的方法：<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;class&nbsp;SampleJob&nbsp;:&nbsp;ISchedulerJob<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;void&nbsp;Execute()<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//文件保存的物理路径，CSTest为虚拟目录名称，F:InetpubwwwrootCSTest为物理路径<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string&nbsp;p&nbsp;=&nbsp;@&quot;F:InetpubwwwrootCSTest&quot;;<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//我们在虚拟目录的根目录下建立SchedulerJob文件夹，并设置权限为匿名可修改，<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//SchedulerJob.txt就是我们所写的文件<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string&nbsp;FILE_NAME&nbsp;=&nbsp;p+&nbsp;&quot;\SchedulerJob\SchedulerJob.txt&quot;;<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//取得当前服务器时间，并转换成字符串<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string&nbsp;c&nbsp;=&nbsp;System.DateTime.Now.ToString(&quot;yyyy-mm-dd&nbsp;hh:MM:ss&quot;);<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//标记是否是新建文件的标量<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bool&nbsp;flag&nbsp;=&nbsp;false;<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//如果文件不存在，就新建该文件<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(!File.Exists(FILE_NAME))<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;flag&nbsp;=&nbsp;true;<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;StreamWriter&nbsp;sr&nbsp;=&nbsp;File.CreateText(FILE_NAME);<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sr.Close();<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//向文件写入内容<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;StreamWriter&nbsp;x&nbsp;=&nbsp;new&nbsp;StreamWriter(FILE_NAME,true,System.Text.Encoding.Default);<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(flag)&nbsp;x.Write(&quot;计划任务测试开始：&quot;);<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;x.Write(&quot; &quot;+c);<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;x.Close();<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />接下来，我们建立一个配置对象，告诉调度引擎执行什么任务和执行的时间间隔。<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;class&nbsp;SchedulerConfiguration<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//时间间隔<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private&nbsp;int&nbsp;sleepInterval;<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//任务列表<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private&nbsp;ArrayList&nbsp;jobs&nbsp;=&nbsp;new&nbsp;ArrayList();<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;int&nbsp;SleepInterval&nbsp;{&nbsp;get&nbsp;{&nbsp;return&nbsp;sleepInterval;&nbsp;}&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;ArrayList&nbsp;Jobs&nbsp;{&nbsp;get&nbsp;{&nbsp;return&nbsp;jobs;&nbsp;}&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//调度配置类的构造函数<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;SchedulerConfiguration(int&nbsp;newSleepInterval)<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sleepInterval&nbsp;=&nbsp;newSleepInterval;<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />下面就是调度引擎，定时执行配置对象的任务<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;class&nbsp;Scheduler<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private&nbsp;SchedulerConfiguration&nbsp;configuration&nbsp;=&nbsp;null;<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;Scheduler(SchedulerConfiguration&nbsp;config)<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;configuration&nbsp;=&nbsp;config;<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;void&nbsp;Start()<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;while(true)<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//执行每一个任务<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;foreach(ISchedulerJob&nbsp;job&nbsp;in&nbsp;configuration.Jobs)<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ThreadStart&nbsp;myThreadDelegate&nbsp;=&nbsp;new&nbsp;ThreadStart(job.Execute);<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Thread&nbsp;myThread&nbsp;=&nbsp;new&nbsp;Thread(myThreadDelegate);<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;myThread.Start();<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Thread.Sleep(configuration.SleepInterval);<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />所有的准备工作已经完成，下面就是激活引擎的工作了。为了让我们的任务计划执行，我们在Global.asax.cs文件里的Applicatio_Start和Application_End里进行建立和销毁工作，首先建立一个调度进程运行的线程，我们这里的运行间隔时间为3秒钟。<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;public&nbsp;System.Threading.Thread&nbsp;schedulerThread&nbsp;=&nbsp;null;<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;protected&nbsp;void&nbsp;Application_Start(Object&nbsp;sender,&nbsp;EventArgs&nbsp;e)<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;SchedulerConfiguration&nbsp;config&nbsp;=&nbsp;&nbsp;new&nbsp;SchedulerConfiguration(1000*3);<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;config.Jobs.Add(new&nbsp;SampleJob());<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;Scheduler&nbsp;scheduler&nbsp;=&nbsp;new&nbsp;Scheduler(config);<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;System.Threading.ThreadStart&nbsp;myThreadStart&nbsp;=&nbsp;&nbsp;new&nbsp;System.Threading.ThreadStart(scheduler.Start);<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;System.Threading.Thread&nbsp;schedulerThread&nbsp;=&nbsp;new&nbsp;System.Threading.Thread(myThreadStart);<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;schedulerThread.Start();<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />最后还需要在程序退出时进行销毁：<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;protected&nbsp;void&nbsp;Application_End(Object&nbsp;sender,&nbsp;EventArgs&nbsp;e)<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(null&nbsp;!=&nbsp;schedulerThread)<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;{<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;schedulerThread.Abort();<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;}<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />好了，在VS.NET里建立一个C#的Web应用程序工程，建立TaskScheduler.cs类，并修改相应的Global.asax.cs文件。为了能看到效果，我们再建立一个表单WebForm1.aspx，定时刷新来检查我们所记录的数据：<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img id="_3343_3446_Open_Image" onclick="this.style.display=’none’; document.getElementById(’_3343_3446_Open_Text’).style.display=’none’; document.getElementById(’_3343_3446_Closed_Image’).style.display=’inline’; document.getElementById(’_3343_3446_Closed_Text’).style.display=’inline’;" alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/ExpandedBlockStart.gif" /><img id="_3343_3446_Closed_Image" style="DISPLAY: none" onclick="this.style.display=’none’; document.getElementById(’_3343_3446_Closed_Text’).style.display=’none’; document.getElementById(’_3343_3446_Open_Image’).style.display=’inline’; document.getElementById(’_3343_3446_Open_Text’).style.display=’inline’;" alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/ContractedBlock.gif" />&nbsp;&nbsp;&nbsp;&nbsp;<span style="COLOR: #000000; BACKGROUND-COLOR: #ffff00"><!--SPAN><SPAN id=_3343_3446_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff">...</SPAN><SPAN id=_3343_3446_Open_Text><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">@&nbsp;Page&nbsp;language</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">=</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">"</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">c#</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">"</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">&nbsp;Codebehind</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">=</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">"</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">WebForm1.aspx.cs</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">"</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">&nbsp;AutoEventWireup</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">=</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">"</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">false</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">"</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5"><BR><IMG alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/ExpandedBlockEnd.gif" align=top>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Inherits</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">=</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">"</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">CSTest.WebForm1</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">"</SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #f5f5f5">&nbsp;</SPAN></SPAN><SPAN style="COLOR: #000000; BACKGROUND-COLOR: #ffff00"--></span><span style="COLOR: #000000"><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;〈</span><span style="COLOR: #0000ff">!</span><span style="COLOR: #ff00ff">DOCTYPE&nbsp;HTML&nbsp;PUBLIC&nbsp;&quot;-//W3C//DTD&nbsp;HTML&nbsp;4.0&nbsp;Transitional//EN&quot;&nbsp;</span><span style="COLOR: #0000ff">&gt;</span><span style="COLOR: #000000"><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="COLOR: #0000ff"><font color="#000000">〈</font></span><span style="COLOR: #800000">HTML</span><span style="COLOR: #0000ff">&gt;</span><span style="COLOR: #000000"><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="COLOR: #0000ff"><font color="#000000">〈</font></span><span style="COLOR: #800000">HEAD</span><span style="COLOR: #0000ff">&gt;</span><span style="COLOR: #000000"><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="COLOR: #0000ff"><font color="#000000">〈</font></span><span style="COLOR: #800000">title</span><span style="COLOR: #0000ff">&gt;</span><span style="COLOR: #000000">在Web应用程序中执行计划任务的例子</span><span style="COLOR: #0000ff"><span style="COLOR: #800000">title</span><span style="COLOR: #0000ff">&gt;</span><span style="COLOR: #000000"><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="COLOR: #0000ff"><font color="#000000">〈</font></span><span style="COLOR: #800000">meta&nbsp;</span><span style="COLOR: #ff0000">http-equiv</span><span style="COLOR: #0000ff">=&quot;refresh&quot;</span><span style="COLOR: #ff0000">&nbsp;content</span><span style="COLOR: #0000ff">=&quot;10&quot;</span><span style="COLOR: #0000ff">&gt;</span><span style="COLOR: #000000"><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;〈</span><span style="COLOR: #0000ff">/</span><span style="COLOR: #800000">HEAD</span><span style="COLOR: #0000ff">&gt;</span><span style="COLOR: #000000"><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;〈</span><span style="COLOR: #800000">body&nbsp;</span><span style="COLOR: #ff0000">MS_POSITIONING</span><span style="COLOR: #0000ff">=&quot;GridLayout&quot;</span><span style="COLOR: #0000ff">&gt;</span><span style="COLOR: #000000"><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;〈</span><span style="COLOR: #800000">form&nbsp;</span><span style="COLOR: #ff0000">id</span><span style="COLOR: #0000ff">=&quot;Form1&quot;</span><span style="COLOR: #ff0000">&nbsp;method</span><span style="COLOR: #0000ff">=&quot;post&quot;</span><span style="COLOR: #ff0000">&nbsp;runat</span><span style="COLOR: #0000ff">=&quot;server&quot;</span><span style="COLOR: #0000ff">&gt;</span><span style="COLOR: #000000"><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="COLOR: #0000ff"><font color="#000000">〈</font></span><span style="COLOR: #800000">frame&nbsp;</span><span style="COLOR: #ff0000">style</span><span style="COLOR: #0000ff">=&quot;width:100%;height:100%&quot;</span><span style="COLOR: #ff0000">&nbsp;src</span><span style="COLOR: #0000ff">=&quot;SchedulerJob/SchedulerJob.txt&quot;</span><span style="COLOR: #0000ff">&gt;<span style="COLOR: #800000">iframe</span><span style="COLOR: #0000ff">&gt;</span><span style="COLOR: #000000"><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;〈</span><span style="COLOR: #0000ff">/</span><span style="COLOR: #800000">form</span><span style="COLOR: #0000ff">&gt;</span><span style="COLOR: #000000"><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;〈</span><span style="COLOR: #0000ff">/</span><span style="COLOR: #800000">body</span><span style="COLOR: #0000ff">&gt;</span><span style="COLOR: #000000"><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;〈</span><span style="COLOR: #0000ff">/</span><span style="COLOR: #800000">HTML</span><span style="COLOR: #0000ff">&gt;</span><span style="COLOR: #000000"><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />对工程进行编译并运行，就可以看到结果了，结果如下：<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;计划任务测试开始：<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2003-13-10&nbsp;11:08:15<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2003-13-10&nbsp;11:08:18<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2003-13-10&nbsp;11:08:21<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2003-13-10&nbsp;11:08:24<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2003-13-10&nbsp;11:08:27<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2003-13-10&nbsp;11:08:30<br /><img alt="" align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" />需要说明的是，以上只是在Web应用程序中执行计划任务的简单例子，对于多个任务来说，需要在不同的线程内进行工作，对计划的安排也是很简单的，实际还需要站点堵塞，当机的情况。另外这里也没有进行错误的处理等工作，相信大家会写出更加完美的代码的。</span></span></span>]]>
</content>
</entry>

<entry>
<title>Asp.Net Cookie基础知识</title>
<link rel="alternate" type="text/html" href="http://www.bokee.net/blogmodule/weblogcomment_viewEntry/848072.html"/>
<issued>2007-07-06T09-09-30 CST</issued> 
<created>2007-07-06T09-09-30 CST</created>
<modified>2008-08-30T16-10-04Z</modified>
<id>tag:fanshaoran.blogchina.com,2005://848072</id>
<author>
<name>fanshaoran</name>
<url>http://www.bokee.net/blogmodule/weblogcomment_index/fanshaoran.html</url>
</author>
<dc:subject>信息化建设</dc:subject>
<content type="text/html" mode="escaped" xml:lang="zh_CN" xml:base="http://www.bokee.net"> 
<![CDATA[<div><font face="宋体" size="2">Cookies用于存储特定用户信息，它提供了Web程序中一种有用的方式。多年以来，javascript开发人员已经进行了有关cookie的大量工作。同样，ASP.NET通过System.Web空间名称也提供了cookie的访问。虽然你不应该使用cookie来存储一些敏感性的数据，但是，它们是处理锁细数据的一个极好的选择，比如颜色参数选择或者最后一次访问日期。</font>
<p><font face="宋体" size="2">传递cookies<br />cookie是存储在客户端计算机的一个小文件。如果你是一个Windows用户，可以在用户路径中查看Cookies路径，即为Documents And Settings路径。这一路径包含这一文件名称的文本文件：</font></p>
<p><font face="宋体" size="2">username @ Web site domain that created the cookie </font></p>
<p><font face="宋体" size="2">(用户名称@建立cookie的站点域名)</font></p>
<p><font face="宋体" size="2">.NET System.Web空间名称包含三个类，你可以使用它们来处理客户端的Cookies：</font></p>
<p><font face="宋体" size="2">HttpCookie：提供一个建立和操作独立HTTP cookies的安全类型的方式。</font></p>
<p><font face="宋体" size="2">HttpResponse：Cookies属性允许客户端cookies被操作。</font></p>
<p><font face="宋体" size="2">HttpRequest：Cookies属性允许访问客户端操作的cookies。</font></p>
<p><font face="宋体" size="2">HttpResponse和HttpRequest对象的Cookies属性将返回一个HttpCookieCollection对象，它包含着，将单独的cookies添加到集合(collection)中，以及从集合(collection)获得一个单独的cookies。</font></p>
<p><font face="宋体" size="2">HttpCookie类<br />HttpCookie类针对于客户存储之用而建立的单独cookies。一旦HttpCookie对象被建立，你可以将其添加到HttpResponse对象的Cookies属性中。同样的，你可以通过HttpRequest对象访问现有的cookies。HttpCookie类包含以下的公有属性：</font></p>
<p><font face="宋体" size="2">Domain(域名)：获得或设置与cookie有关的域名，可用于限制特定区域的cookie访问。</font></p>
<p><font face="宋体" size="2">Expires(期限)：获得或设置cookie的终止日期和时间，你可以将其设置为一个过去的日期以自动终止或者删除cookie。</font></p>
<p><font face="宋体" size="2">Names(名称)：获得或设置cookie名称。</font></p>
<p><font face="宋体" size="2">Path(路径)：获得或设置cookie的虚拟路径。这一属性允许你限制cookie范围，也就是说，访问cookie只能限制于一个特定的文件夹或者路径。设置这一属性限制为只能访问特定路径和该路径下的所有文件。</font></p>
<p><font face="宋体" size="2">Secure(安全)：发信号以表示是否使用Secure Sockets Layer (SSL)来发送cookie值。</font></p>
<p><font face="宋体" size="2">Value(值)：获得或设置一个单独的cookie值。</font></p>
<p><font face="宋体" size="2">Values(信息)：返回包含在cookie中的key/value的一个集合。</font></p>
<p><font face="宋体" size="2">虽然这些还不是一个最详尽的列表，但它提供了处理cookies所需要的东西。对于这些属性的使用，以下VB.NET范例给予最好的理解：</font></p>
<p><font face="宋体" size="2">Dim testCookie As New HttpCookie(&quot;LastVisited&quot;)</font></p>
<p><font face="宋体" size="2">testCookie.Value = DateTime.Now.ToString</font></p>
<p><font face="宋体" size="2">testCookie.Expires = DateTime.Now.AddDays(7)</font></p>
<p><font face="宋体" size="2">testCookie.Domain = &quot;builder.com&quot;</font></p>
<p><font face="宋体" size="2">Response.Cookies.Add(testCookie) </font></p>
<p><font face="宋体" size="2">这一代码段建立了一个名为LastVisited的新的cookie，并赋予当前日期和时间的值。同样的，cookie终止期限设置为一个星期，相关的范围为populated。一旦建立对象，通过Response.Cookies对象的Add方法就可以将对象添加到客户端的cookies集合。HttpCookie构造函数中的方法有两种：</font></p>
<p><font face="宋体" size="2">HttpCookie objectName = New HttpCookie(&quot;cookieName&quot;) </font></p>
<p><font face="宋体" size="2">HttpCookie objectName = New HttpCookie(&quot;cookieName&quot;, &quot;cookieValue&quot;) </font></p>
<p><font face="宋体" size="2">同样，Response对象包含一个SetCookie方法，这一方法可以接受一个HttpCookie对象。</font></p>
<p><font face="宋体" size="2">我的cookie在哪里？<br />一旦cookies被保存在客户端，有多种不同的方法以提供你访问它们。如果你知道cookie名称，可以使用HttpResponse对象很容易地访问它的值。以下VB.NET行显示了与cookie有关的值：</font></p>
<p><font face="宋体" size="2">Response.Write(Request.Cookies(&quot;LastVisitied&quot;).Value) </font></p>
<p><font face="宋体" size="2">除此之外，可以通过一个HttpCookieCollection对象访问cookies的完整列表。这就使得cookie列表可以用一个for循环来访问。以下C#代码说明了这样的例子：</font></p>
<p><font face="宋体" size="2">HttpCookieCollection cookies;</font></p>
<p><font face="宋体" size="2">HttpCookie oneCookie;</font></p>
<p><font face="宋体" size="2">cookies = Request.Cookies;</font></p>
<p><font face="宋体" size="2">string[] cookieArray = cookies.AllKeys;</font></p>
<p><font face="宋体" size="2">for (int i=0; I &lt; cookieArray.Length; i++) {</font></p>
<p><font face="宋体" size="2">oneCookie = cookies[cookieArray[i]];</font></p>
<p><font face="宋体" size="2">Response.Write(oneCookie.Name + &quot; - &quot; + oneCookie.Value);</font></p>
<p><font face="宋体" size="2">} </font></p>
<p><font face="宋体" size="2">VB.NET中相应的代码如下：</font></p>
<p><font face="宋体" size="2">Dim i As Integer</font></p>
<p><font face="宋体" size="2">Dim oneCookie As HttpCookie</font></p>
<p><font face="宋体" size="2">For i = 0 To Request.Cookies.Count - 1</font></p>
<p><font face="宋体" size="2">oneCookie = Request.Cookies(i)</font></p>
<p><font face="宋体" size="2">Response.Write(oneCookie.Name + &quot; - &quot; + oneCookie.Value)</font></p>
<p><font face="宋体" size="2">Next I </font></p>
<p><font face="宋体" size="2">稳定也是一个观点<br />cookie文件存放在客户端机器，所以你的用户可以任意删除或更改。此外，用户还可以使cookies无效化。基于此原因，请记住不要依赖cookie数据。你应该将重要的信息保存在服务器──特别是一个数据库中。</font></p>
<p><font face="宋体" size="2">在一个cookie中存储关键信息被认为是一种低级的程序设计，因为这些信息很容易被泄露，原因是这些信息位于客户机器的一个文件中。在这一点，一种方法就是使用SSL，这是一种可以避免敏感信息的更好方法。</font></p>
<p><font face="宋体" size="2">我可以使用cookies吗？<br />用户可以在自己的浏览器上无效化cookie支持。你可以在自己的代码中访问这些设置以决定是否支持cookies。Request对象满足了这一想法，以下VB.NET代码显示了这一过程：</font></p>
<p><font face="宋体" size="2">If Request.Browser.Cookies = True Then</font></p>
<p><font face="宋体" size="2">' 使用cookies</font></p>
<p><font face="宋体" size="2">Else</font></p>
<p><font face="宋体" size="2">'没有cookie支持</font></p>
<p><font face="宋体" size="2">End If </font></p>
<p><font face="宋体" size="2">可以联合代码来使用cookie值。以下C#代码段对cookie支持进行了测试，并相应地将结果显示在一个文本框：</font></p>
<p><font face="宋体" size="2">if (Request.Browser.Cookies == true)</font></p>
<p><font face="宋体" size="2">{</font></p>
<p><font face="宋体" size="2">if (Request.Cookies[&quot;LastVisited1&quot;] == null)</font></p>
<p><font face="宋体" size="2">{</font></p>
<p><font face="宋体" size="2">HttpCookie newCookie = new HttpCookie(&quot;LastVisited1&quot;,DateTime.Now.ToString());</font></p>
<p><font face="宋体" size="2">newCookie.Expires = DateTime.Now.AddYears(1);</font></p>
<p><font face="宋体" size="2">Response.Cookies.Add(newCookie);</font></p>
<p><font face="宋体" size="2">this.txtName.Text = &quot;Is this your first time?&quot;;</font></p>
<p><font face="宋体" size="2">} else {</font></p>
<p><font face="宋体" size="2">this.txtName.Text = &quot;We haven't seen you since &quot; +</font></p>
<p><font face="宋体" size="2">&nbsp;Request.Cookies[&quot;LastVisited1&quot;].Value;</font></p>
<p><font face="宋体" size="2">}&nbsp; } </font></p>
<p><font face="宋体" size="2">你可以将这一代码段添加到ASP.NET页中的Page_Load事件。</font></p>
<p><font face="宋体" size="2">保存数据的另一方式<br />ASP.NET提供了保存特定用户数据的多种方法。其中一个老方法就是cookies。对于敏感数据，虽然cookies不是最好的方法，但它是诸如颜色参数选择、最后一次访问日期等亲和力选项(benign items)的最佳选择。虽然这些敏感数据重要，但当用户的计算机崩溃时数据丢失，这也不是世界的末日。</font></p>
<p><font face="宋体" size="2">&nbsp;===============</font></p>
<p><font face="宋体" size="2">Cookie同Session的关系<br /><br />　　1. asp.net中Session可以采用cookie 和cookieless两种方法，cookieless方式是将SessionID放在URL中在客户端和服务端中来回传递，不需要用到cookie，在这里不讨论这个方式。<br /><br />　　2. 在asp.net中客户第一次请求一个URL，服务器给这个客户生成一个SessionID，并以非永久性的 Cookie发送到客户端。<br /><br />　　3. 非永久性的 Cookie只有在浏览器关闭后这些Cookie才随之消失，Session的超时判断是这样的过程：<br /><br />　　3.1 第一次客户端访问服务器，会得到一个SessionID，以非永久性的 Cookie发送到客户端。<br /><br />　　3.2 在这个浏览器关闭之前访问这个URL，浏览器都会把这个SessionID发送到服务端，服务端根据SessionID来维持对应此客户的服务端的各种状态（就是Session中保存的各种值），在web应用程序中可以对这些Session进行操作。<br /><br />　　3.3 服务端维护此SessionID的过期时间，IIS中可以设置Session的超时时间。每次请求都将导致服务端将此SessioID的过期时间延长一个设置的超时时间。<br /><br />　　3.4 当服务端发现某个SessionID已经过时，即某个客户已经在设置的超时时间内没有再次访问此站点，即将此SessionID，连同跟此SessionID相关的所有Session变量删除。<br /><br />　　3.5 客户端的浏览器未关闭前，并不知道服务端已经将这个SessionID删除，客户端依旧发送此SessionID的cookie到服务端，只是此时的服务端已经不认识此SessionID了，会将此用户当做新用户，再次分配一个新的SessionID。</font></p>
</div>]]>
</content>
</entry>

<entry>
<title>.NET 中的三个 Timer 以及网页中应用</title>
<link rel="alternate" type="text/html" href="http://www.bokee.net/blogmodule/weblogcomment_viewEntry/848042.html"/>
<issued>2007-07-06T08-56-56 CST</issued> 
<created>2007-07-06T08-56-56 CST</created>
<modified>2008-08-30T16-10-05Z</modified>
<id>tag:fanshaoran.blogchina.com,2005://848042</id>
<author>
<name>fanshaoran</name>
<url>http://www.bokee.net/blogmodule/weblogcomment_index/fanshaoran.html</url>
</author>
<dc:subject>信息化建设</dc:subject>
<content type="text/html" mode="escaped" xml:lang="zh_CN" xml:base="http://www.bokee.net"> 
<![CDATA[<div align="left"><u><span style="FONT-SIZE: 16pt; COLOR: #4f4f4f; TEXT-DECORATION: none; text-underline: none">.NET </span><span style="FONT-SIZE: 16pt; COLOR: #4f4f4f; TEXT-DECORATION: none; text-underline: none">中的三个</span><span style="FONT-SIZE: 16pt; COLOR: #4f4f4f; TEXT-DECORATION: none; text-underline: none"> Timer </span><span style="FONT-SIZE: 16pt; COLOR: #4f4f4f; TEXT-DECORATION: none; text-underline: none">以及网页中应用</span></u></div>
<div align="left"><span style="FONT-SIZE: 12pt">NET Framework </span><span style="FONT-SIZE: 12pt">提供了三种计时器，分别是：</span></div>
<ul type="disc">
    <li style="TEXT-ALIGN: left"><span style="FONT-SIZE: 12pt">System.Timers.Timer<br /></span><span style="FONT-SIZE: 12pt">基于服务器的计时器，位于&ldquo;工具箱&rdquo;的&ldquo;组件&rdquo;选项卡上；<br />&nbsp; </span></li>
    <li style="TEXT-ALIGN: left"><span style="FONT-SIZE: 12pt">System.Windows.Forms.Timer<br /></span><span style="FONT-SIZE: 12pt">基于 Windows 的标准计时器，位于&ldquo;工具箱&rdquo;的&ldquo;Windows 窗体&rdquo;选项卡上；<br />&nbsp; </span></li>
    <li style="TEXT-ALIGN: left"><span style="FONT-SIZE: 12pt">System.Threading.Timer<br /></span><span style="FONT-SIZE: 12pt">仅可在编程时使用的线程计时器。</span></li>
</ul>
<div align="left"><span style="FONT-SIZE: 12pt">三种计时器各有特色，详见你的 Visual Studio .NET 文档（位置在： <span style="COLOR: darkgreen">Visual Studio .NET &nbsp;- Visual Basic </span><span style="COLOR: darkgreen">和 Visual C# .NET - 使用组件编程 - 创建文件系统和 Timer 组件 - 基于服务器的计时器简介</span>）。</span></div>
<div align="left"><span style="FONT-SIZE: 12pt">我曾经写过一篇： <a target="_blank" href="http://blog.joycode.com/percyboy/articles/3595.aspx"><span style="COLOR: #000033"><span>在 ASP.NET </span><span style="COLOR: #000033">中使用计时器（Timer</span><span style="COLOR: #000033">）</span></span>主要列出了在 ASP.NET <strong>应用程序</strong>（注意不是 Web Form ）中使用 System.Timers.Timer 的一个示例。</a><br /></span></div>
<div align="left"><span style="FONT-SIZE: 12pt">有网友把这个例子写进了 Web Form，试验失败后来我的 blog &ldquo;发泄&rdquo;怨气，我是可以理解的，但如某些人那样态度过于&ldquo;蛮横&rdquo;也让人难以接受。</span></div>
<div align="left"><span style="FONT-SIZE: 12pt">Web </span><span style="FONT-SIZE: 12pt">页面本来就和 Windows 程序不同的思路，Web 页面大多时候更像 C/S 结构的&ldquo;请求&rdquo;-&ldquo;应答&rdquo;模型（实际上也是这样）。这样&ldquo;请求&rdquo;和&ldquo;应答&rdquo;就要讲究效率：不能说你&ldquo;请求&rdquo;完了，服务器先&ldquo;休息&rdquo;1 分钟，然后在&ldquo;应答&rdquo;你；如是是这样，还有网友去你的站点吗？</span></div>
<div align="left"><span style="FONT-SIZE: 12pt">虽然微软花了不少功夫让 Web Form &ldquo;看起来&rdquo;很像 Windows Form，但改变不了 Web 页面的实质，所以在 Web Form 中放置计时器的想法是幼稚的。</span></div>
<div align="left"><span style="FONT-SIZE: 12pt">其实我能理解，几位网友的实际需求是：让网页定时刷新，或者定时做什么事情。可请你注意，这里的&ldquo;定时&rdquo;是发生在哪里的？是服务器端吗？不是吧，是在用户客户端，是在访问你页面的用户浏览器端的&ldquo;定时&rdquo;！</span></div>
<div align="left"><span style="FONT-SIZE: 12pt">ASP.NET </span><span style="FONT-SIZE: 12pt">程序中 C#/VB.NET 代码书写的代码都是在服务器端执行的。那么 .NET Framework 提供的三种计时器都不能满足你这样的需求！客户端的&ldquo;定时&rdquo;如何要用服务端的&ldquo;Timer&rdquo;呢？</span></div>
<div align="left"><span style="FONT-SIZE: 12pt">客户端的&ldquo;定时&rdquo;就要用客户端手段去解决，HTML DOM 模型中的 window 对象有 setTimeout 方法，可以帮助你实现你所想要的客户端效果。</span></div>
<div align="left"><span style="FONT-SIZE: 12pt">BTW</span><span style="FONT-SIZE: 12pt">，再比如说，你想让访问者看到一个警告框，这个动作同样发生在客户端，所以依然是用客户端手段(比如： HTML DOM 中 window 对象的 alert 方法)，而不是用 .NET C#/VB.NET 代码中的 MsgBox.Show() （如果这样将会在服务器上显示一个警告框，你难道要警告&ldquo;管理员&rdquo;吗？）。</span></div>
<div align="left"><span style="FONT-SIZE: 12pt">回过头来说那篇文章，虽然在 Web Form 中不能使用定时器，但在 ASP.NET 应用程序中却是可以的。</span></div>
<div align="left"><span style="FONT-SIZE: 12pt">ASP.NET </span><span style="FONT-SIZE: 12pt">站点中的所有页面组成一个 Web 应用程序，这个程序是在服务器端运行的，存储大家熟悉的 Application、Session 等信息。当 Web 应用程序从服务器启动时，会触发 Application_OnStart；应用程序结束（服务器关机、重启）时，会触发 Application_OnEnd；接到新的客户端&ldquo;请求&rdquo;，Application_BeginRequest；&hellip;&hellip;这是一个持续的过程。（一般地，这些代码都可以写在 global.asax 的代码文件中）我们可以在这个过程中使用&ldquo;计时器&rdquo;。当然使用的应该是基于服务器的计时器，System.Timers.Timer 类型。</span></div>
<div align="left"><span style="FONT-SIZE: 12pt">像 ymm 和 daniel 等网友提出的需求（定时从数据库中取出数据生成静态网页）可以通过文中的方法来实现：</span></div>
<div align="left"><span style="FONT-SIZE: 12pt">也在你的 Application_OnStart 中启动计时器，在 Elaspsed 事件处理程序中写你的&ldquo;从数据库取数据生成静态页面&rdquo;的代码。</span></div>
<div>&nbsp;</div>]]>
</content>
</entry>

<entry>
<title>看广告，赚美元，最流行的点击赚钱网站！</title>
<link rel="alternate" type="text/html" href="http://www.bokee.net/blogmodule/weblogcomment_viewEntry/838814.html"/>
<issued>2007-07-01T23-51-25 CST</issued> 
<created>2007-07-01T23-51-25 CST</created>
<modified>2008-08-30T22-41-31Z</modified>
<id>tag:fanshaoran.blogchina.com,2005://838814</id>
<author>
<name>fanshaoran</name>
<url>http://www.bokee.net/blogmodule/weblogcomment_index/fanshaoran.html</url>
</author>
<dc:subject>网络赚钱</dc:subject>
<content type="text/html" mode="escaped" xml:lang="zh_CN" xml:base="http://www.bokee.net"> 
<![CDATA[<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: maroon">AdBux</span></a></span><span style="FONT-SIZE: 14pt; COLOR: maroon">是目前很流行的点击类广告赚钱网站，每点</span><span style="FONT-SIZE: 14pt; COLOR: maroon">1</span><span style="FONT-SIZE: 14pt; COLOR: maroon">个广告，你将得到</span><span style="FONT-SIZE: 14pt; COLOR: maroon">0.01</span><span style="FONT-SIZE: 14pt; COLOR: maroon">美元，累记到</span><span style="FONT-SIZE: 14pt; COLOR: maroon">10</span><span style="FONT-SIZE: 14pt; COLOR: maroon">美元，你就可以申请通过</span><span style="FONT-SIZE: 14pt; COLOR: maroon">PayPal</span><span style="FONT-SIZE: 14pt; COLOR: maroon">支付了，审核通过的话，最慢</span><span style="FONT-SIZE: 14pt; COLOR: maroon">48</span><span style="FONT-SIZE: 14pt; COLOR: maroon">小时之内就可到你的</span><span style="FONT-SIZE: 14pt; COLOR: maroon">PayPal</span><span style="FONT-SIZE: 14pt; COLOR: maroon">帐户里面。。。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: red">下面详细介绍一下</span></strong><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><strong><span style="COLOR: red">AdBux</span></strong></a></span><strong><span style="FONT-SIZE: 14pt; COLOR: red">。大家在注册和使用过程中如果有问题，请在后面留言，本人尽力解决）</span></strong></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: #993300">1</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: #993300">，注册：</span></strong></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a> </span><span style="FONT-SIZE: 14pt; COLOR: black">的网站为</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">http://adbux.org/</span></a></span><span style="FONT-SIZE: 14pt; COLOR: black">一进入页面之后，你会看到如下的界面：这是</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a> </span><span style="FONT-SIZE: 14pt; COLOR: black">的一些介绍，我们现在开始注册：</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black"><img height="250" alt="" width="498" src="/userfilemodule/download.do?action=reference&amp;id=559789&amp;bokeeName=fanshaoran" /></span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">点</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">Register</span></a></span><span style="FONT-SIZE: 14pt; COLOR: black">，出现一个简单的注册界面</span><span style="FONT-SIZE: 14pt; COLOR: black">.</span><span style="FONT-SIZE: 14pt; COLOR: black">只有几个选项：</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black"><img height="403" alt="" width="463" src="/userfilemodule/download.do?action=reference&amp;id=559796&amp;bokeeName=fanshaoran" /></span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black"><img height="341" alt="" width="469" src="/userfilemodule/download.do?action=reference&amp;id=559797&amp;bokeeName=fanshaoran" /></span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">a) Choose a Username</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">：用户名</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">,</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">选择你想要的用户名</span></strong></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">b) Choose a Password</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">：</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">密码</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black"><br />&nbsp;&nbsp;&nbsp; Password Again for Verification</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">：</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">确认你的密码</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">,</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">重输一遍</span></strong></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">c)&nbsp; E-mail Address</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">：</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">你的邮箱地址，用来接受</span><span style="FONT-SIZE: 14pt; COLOR: black">AdBux</span><span style="FONT-SIZE: 14pt; COLOR: black">发来的激活信。</span><span style="FONT-SIZE: 14pt; COLOR: black">(</span><span style="FONT-SIZE: 14pt; COLOR: black">建议使用</span><span style="FONT-SIZE: 14pt; COLOR: black">Gmail</span><span style="FONT-SIZE: 14pt; COLOR: black">和</span><span style="FONT-SIZE: 14pt; COLOR: black">163</span><span style="FONT-SIZE: 14pt; COLOR: black">邮箱，不要用</span><span style="FONT-SIZE: 14pt; COLOR: black">msn</span><span style="FONT-SIZE: 14pt; COLOR: black">，</span><span style="FONT-SIZE: 14pt; COLOR: black">hotmail</span><span style="FONT-SIZE: 14pt; COLOR: black">，</span><span style="FONT-SIZE: 14pt; COLOR: black">yahoo</span><span style="FONT-SIZE: 14pt; COLOR: black">，</span><span style="FONT-SIZE: 14pt; COLOR: black">tom</span><span style="FONT-SIZE: 14pt; COLOR: black">的邮箱</span><span style="FONT-SIZE: 14pt; COLOR: black">,</span><span style="FONT-SIZE: 14pt; COLOR: black">我用了</span><span style="FONT-SIZE: 14pt; COLOR: black">msn</span><span style="FONT-SIZE: 14pt; COLOR: black">的邮箱，一直都没收到信件</span><span style="FONT-SIZE: 14pt; COLOR: black">)<br />&nbsp;&nbsp;&nbsp;&nbsp; <strong>E-mail Address Again for Verification:</strong></span><strong><span style="FONT-SIZE: 14pt; COLOR: black">：</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">再确认你的邮箱地址</span><span style="FONT-SIZE: 14pt; COLOR: black">,</span><span style="FONT-SIZE: 14pt; COLOR: black">重输一遍</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">d)&nbsp; PayPal E-mail Address For Payments</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">：</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">输入你的</span><span style="FONT-SIZE: 14pt; COLOR: black">PayPal</span><span style="FONT-SIZE: 14pt; COLOR: black">帐号，记得不是中国的贝宝，现在</span><span style="FONT-SIZE: 14pt; COLOR: black">PayPal</span><span style="FONT-SIZE: 14pt; COLOR: black">有中文的注册界面，注册一个</span><span style="FONT-SIZE: 14pt; COLOR: black">PayPal</span><span style="FONT-SIZE: 14pt; COLOR: black">很方便的，在这里</span><span style="FONT-SIZE: 14pt; COLOR: black">PayPal</span><span style="FONT-SIZE: 14pt; COLOR: black">帐号以后也可以更换的，没有</span><span style="FONT-SIZE: 14pt; COLOR: black">PayPal</span><span style="FONT-SIZE: 14pt; COLOR: black">的话就先填个你常用的</span><span style="FONT-SIZE: 14pt; COLOR: black">E-mail</span><span style="FONT-SIZE: 14pt; COLOR: black">地址，以后再注册一个</span><span style="FONT-SIZE: 14pt; COLOR: black">Paypal</span><span style="FONT-SIZE: 14pt; COLOR: black">帐号。</span><span style="FONT-SIZE: 14pt; COLOR: black">(PayPal</span><span style="FONT-SIZE: 14pt; COLOR: black">是以</span><span style="FONT-SIZE: 14pt; COLOR: black">E-mail</span><span style="FONT-SIZE: 14pt; COLOR: black">地址为帐号的</span><span style="FONT-SIZE: 14pt; COLOR: black">)</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">e) Your Country (only PayPal allowed countries)</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">：</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">对中国用户</span><span style="FONT-SIZE: 14pt; COLOR: black">,</span><span style="FONT-SIZE: 14pt; COLOR: black">选</span><span style="FONT-SIZE: 14pt; COLOR: black"> China worldwide</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">&nbsp;&nbsp;&nbsp; <strong>Referrer (if any)</strong></span><span style="FONT-SIZE: 14pt; COLOR: black">，这里是系统默认。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">f) Please copy the security code</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">：</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">就是验证码，输入右边显示的数字和字母就行</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">g) </span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">最后点</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">Register</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">(</span><span style="FONT-SIZE: 14pt; COLOR: black">注册</span><span style="FONT-SIZE: 14pt; COLOR: black">)</span><span style="FONT-SIZE: 14pt; COLOR: black">，就</span><span style="FONT-SIZE: 14pt; COLOR: black">OK</span><span style="FONT-SIZE: 14pt; COLOR: black">了，在</span><span style="FONT-SIZE: 14pt; COLOR: black">10</span><span style="FONT-SIZE: 14pt; COLOR: black">分钟之内</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a> </span><span style="FONT-SIZE: 14pt; COLOR: black">会给你的</span><span style="FONT-SIZE: 14pt; COLOR: black">E-mail</span><span style="FONT-SIZE: 14pt; COLOR: black">地址发一封激活信。你打开信，按照提示打开里面的激活链接就行了。恭喜你，一旦激活了你的帐号，你就可以用你的帐号登录，开始你的赚美元之旅了！</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black"><img height="151" alt="" width="500" src="/userfilemodule/download.do?action=reference&amp;id=559798&amp;bokeeName=fanshaoran" /></span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">这是我注册后的信息。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">另外，如果你在一个小时之后还没有收到激活信，那么你得和</span><span style="FONT-SIZE: 14pt; COLOR: black">AdBux</span><span style="FONT-SIZE: 14pt; COLOR: black">联系让他们手动开通你的帐号，具体如何操作请看本文第</span><span style="FONT-SIZE: 14pt; COLOR: black">5</span><span style="FONT-SIZE: 14pt; COLOR: black">条。。。</span><span style="FONT-SIZE: 14pt; COLOR: black">(</span><span style="FONT-SIZE: 14pt; COLOR: black">第一次登录时，会有一个让你选择你需要的广告分类页面，你全选就行</span><span style="FONT-SIZE: 14pt; COLOR: black">,</span><span style="FONT-SIZE: 14pt; COLOR: black">这样所有类型的广告都会发给你。</span><span style="FONT-SIZE: 14pt; COLOR: black">)</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: #993300">2</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: #993300">，开始使用</span></strong><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=laliga"><strong><span style="COLOR: #993300">AdBux</span></strong></a></span><strong><span style="FONT-SIZE: 14pt; COLOR: #993300">赚美元</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: #993300">...</span></strong></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">a) Surf Ads</span></strong></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">Surf Ads </span><span style="FONT-SIZE: 14pt; COLOR: black">是显示广告的地方，你点击</span><span style="FONT-SIZE: 14pt; COLOR: black">Surf Ads</span><span style="FONT-SIZE: 14pt; COLOR: black">之后你就能看到</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a> </span><span style="FONT-SIZE: 14pt; COLOR: black">给你发了多少广告，现在你就可以点击那些广告了，千万记得一次只能点一个广告！点了广告链接之后会出来广告界面，你会注意到屏幕的左上角会有一个记时的数字，从</span><span style="FONT-SIZE: 14pt; COLOR: black">30</span><span style="FONT-SIZE: 14pt; COLOR: black">秒一直减少天</span><span style="FONT-SIZE: 14pt; COLOR: black">0</span><span style="FONT-SIZE: 14pt; COLOR: black">秒，当出现一个</span><span style="FONT-SIZE: 14pt; COLOR: black">Done $</span><span style="FONT-SIZE: 14pt; COLOR: black">之后</span><span style="FONT-SIZE: 14pt; COLOR: black">,</span><span style="FONT-SIZE: 14pt; COLOR: black">就表示你已看完广告，</span><span style="FONT-SIZE: 14pt; COLOR: black">0.01</span><span style="FONT-SIZE: 14pt; COLOR: black">美元就是你的了，这时你可关闭这个广告，再看下面的广告，很简单的</span><span style="FONT-SIZE: 14pt; COLOR: black">! </span><span style="FONT-SIZE: 14pt; COLOR: black">看过的广告会有个划线在上面，表示不能再看了。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black"><img height="270" alt="" width="500" src="/userfilemodule/download.do?action=reference&amp;id=559799&amp;bokeeName=fanshaoran" /></span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">上图是我今天看过的广告，广告有个划线在上面</span><span style="FONT-SIZE: 14pt; COLOR: black">,</span><span style="FONT-SIZE: 14pt; COLOR: black">表示不能再看了。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black"></span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"></div>
<span style="FONT-SIZE: 14pt; COLOR: black">
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><img height="32" alt="" width="500" src="/userfilemodule/download.do?action=reference&amp;id=559800&amp;bokeeName=fanshaoran" /><br /></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black"><img height="52" alt="" width="384" src="/userfilemodule/download.do?action=reference&amp;id=559802&amp;bokeeName=fanshaoran" /></span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">上图当你看完之后出现的</span><span style="FONT-SIZE: 14pt; COLOR: black">Done $</span><span style="FONT-SIZE: 14pt; COLOR: black">，这样你就可以关掉这个广告页面再看另外的广告。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">b) My Stats</span></strong></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">My Stats</span><span style="FONT-SIZE: 14pt; COLOR: black">会显示你看过的广告数目，你目前赚了多少钱</span><span style="FONT-SIZE: 14pt; COLOR: black">,</span><span style="FONT-SIZE: 14pt; COLOR: black">以及你的推广链接，这些很简单的。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">c) Logout</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">退出，</span><strong><span style="FONT-SIZE: 14pt; COLOR: black">How</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">和</span><strong><span style="FONT-SIZE: 14pt; COLOR: black">FAQ</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">是关于</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a> </span><span style="FONT-SIZE: 14pt; COLOR: black">一些基础的知识，</span><strong><span style="FONT-SIZE: 14pt; COLOR: black">Advertise</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">：</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">在他们这里做广告。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">d) Contact</span></strong>&nbsp;<span style="FONT-SIZE: 14pt; COLOR: black">这里你可以和</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a> </span><span style="FONT-SIZE: 14pt; COLOR: black">联系，有什么问题可以通过这里向他们反应。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: #993300">3</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: #993300">，使用</span></strong><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=laliga"><strong><span style="COLOR: #993300">AdBux</span></strong></a></span><strong><span style="FONT-SIZE: 14pt; COLOR: #993300">应该了解的一些知识</span></strong></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">a)</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">，</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">你不能同时拥有多个帐号，</span><span style="FONT-SIZE: 14pt; COLOR: black">AdBux</span><span style="FONT-SIZE: 14pt; COLOR: black">在付款之前有个严格的审查制度，一旦查出你有多个帐号，你的帐号将会中止，你的</span><span style="FONT-SIZE: 14pt; COLOR: black">IP</span><span style="FONT-SIZE: 14pt; COLOR: black">也会禁止，你将不会收到任何款。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">b)</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">，</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">一台电脑不允许注册</span><span style="FONT-SIZE: 14pt; COLOR: black">2</span><span style="FONT-SIZE: 14pt; COLOR: black">个</span><span style="FONT-SIZE: 14pt; COLOR: black">ID</span><span style="FONT-SIZE: 14pt; COLOR: black">，注册第</span><span style="FONT-SIZE: 14pt; COLOR: black">2</span><span style="FONT-SIZE: 14pt; COLOR: black">个</span><span style="FONT-SIZE: 14pt; COLOR: black">ID</span><span style="FONT-SIZE: 14pt; COLOR: black">会得到禁告，注册第</span><span style="FONT-SIZE: 14pt; COLOR: black">3</span><span style="FONT-SIZE: 14pt; COLOR: black">个</span><span style="FONT-SIZE: 14pt; COLOR: black">ID</span><span style="FONT-SIZE: 14pt; COLOR: black">的话，</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a> </span><span style="FONT-SIZE: 14pt; COLOR: black">会把这</span><span style="FONT-SIZE: 14pt; COLOR: black">3</span><span style="FONT-SIZE: 14pt; COLOR: black">个号码一起删除，以后这台电脑就不能再注册了</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">c)</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">，</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">使用同一</span><span style="FONT-SIZE: 14pt; COLOR: black">IP</span><span style="FONT-SIZE: 14pt; COLOR: black">的局域网，学校，</span><span style="FONT-SIZE: 14pt; COLOR: black">ISP</span><span style="FONT-SIZE: 14pt; COLOR: black">是可以使用</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a> </span><span style="FONT-SIZE: 14pt; COLOR: black">的，前提是如上面一样。。。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">d)</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">，</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">注册的时候大家不要用</span><span style="FONT-SIZE: 14pt; COLOR: black">msn</span><span style="FONT-SIZE: 14pt; COLOR: black">，</span><span style="FONT-SIZE: 14pt; COLOR: black">hotmail</span><span style="FONT-SIZE: 14pt; COLOR: black">的</span><span style="FONT-SIZE: 14pt; COLOR: black">e-mail</span><span style="FONT-SIZE: 14pt; COLOR: black">，建议用</span><span style="FONT-SIZE: 14pt; COLOR: black">gmail</span><span style="FONT-SIZE: 14pt; COLOR: black">，</span><span style="FONT-SIZE: 14pt; COLOR: black">163</span><span style="FONT-SIZE: 14pt; COLOR: black">的邮箱。我用了</span><span style="FONT-SIZE: 14pt; COLOR: black">msn</span><span style="FONT-SIZE: 14pt; COLOR: black">的邮箱，一直没收到信</span><span style="FONT-SIZE: 14pt; COLOR: black">,</span><span style="FONT-SIZE: 14pt; COLOR: black">后来我发了</span><span style="FONT-SIZE: 14pt; COLOR: black">2</span><span style="FONT-SIZE: 14pt; COLOR: black">封信联系他们，在</span><span style="FONT-SIZE: 14pt; COLOR: black">24</span><span style="FONT-SIZE: 14pt; COLOR: black">小时之后才开通了我的号，因为</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a> </span><span style="FONT-SIZE: 14pt; COLOR: black">只能申请一个帐号，所以我只能等待，还好开通了，呵呵。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: #993300">4,</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: #993300">如何收钱</span></strong></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">帐户上达到</span><span style="FONT-SIZE: 14pt; COLOR: black">10</span><span style="FONT-SIZE: 14pt; COLOR: black">美元就可申请支付了，点</span><span style="FONT-SIZE: 14pt; COLOR: black">My Stats</span><span style="FONT-SIZE: 14pt; COLOR: black">，再点</span><span style="FONT-SIZE: 14pt; COLOR: black">Account Balance (cashout)</span><span style="FONT-SIZE: 14pt; COLOR: black">边上的数字</span><span style="FONT-SIZE: 14pt; COLOR: black">(</span><span style="FONT-SIZE: 14pt; COLOR: black">也就是你目前的收入啦。</span><span style="FONT-SIZE: 14pt; COLOR: black">),</span><span style="FONT-SIZE: 14pt; COLOR: black">就可进入申请付款的页面，确认你的</span><span style="FONT-SIZE: 14pt; COLOR: black">paypal</span><span style="FONT-SIZE: 14pt; COLOR: black">是对的，就可申请支付</span><span style="FONT-SIZE: 14pt; COLOR: black">,</span><span style="FONT-SIZE: 14pt; COLOR: black">之后出现如下信息：</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">　</span><span style="FONT-SIZE: 14pt; COLOR: black">Your payment request of $10.18 has been submitted, We try to process payments as soon as possible but please allow up to 48 hours for payment to be issued. DO NOT e-mail us asking to speed up the process because it will only delay it further. Your payment request should now be available in the, &quot;My History&quot; area.</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style="FONT-SIZE: 14pt; COLOR: black">意思是你申请的</span><span style="FONT-SIZE: 14pt; COLOR: black">10.18</span><span style="FONT-SIZE: 14pt; COLOR: black">美元已经提交了，我们会在</span><span style="FONT-SIZE: 14pt; COLOR: black">48</span><span style="FONT-SIZE: 14pt; COLOR: black">小时之内处理，你的支付信息可以在你的</span><span style="FONT-SIZE: 14pt; COLOR: black">&quot;My History&quot;</span><span style="FONT-SIZE: 14pt; COLOR: black">查看</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: #993300">5</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: #993300">，一点小意外：</span></strong></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">注册后，</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a> </span><span style="FONT-SIZE: 14pt; COLOR: black">发给你的激活信一般是在</span><span style="FONT-SIZE: 14pt; COLOR: black">10</span><span style="FONT-SIZE: 14pt; COLOR: black">分钟之内就能收到。但是有的时候可能会收不到，这与你选择的</span><span style="FONT-SIZE: 14pt; COLOR: black">e-mail</span><span style="FONT-SIZE: 14pt; COLOR: black">地址有关，如果超过</span><span style="FONT-SIZE: 14pt; COLOR: black">1</span><span style="FONT-SIZE: 14pt; COLOR: black">个小时还没有收到信，你就需要和</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a></span><span style="FONT-SIZE: 14pt; COLOR: black">联系一下，让他们手工给你激活你的帐号，具体如下：</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">点右上角的</span><strong><span style="FONT-SIZE: 14pt; COLOR: black">Contact</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">，如下图：</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black"><img height="283" alt="" width="500" src="/userfilemodule/download.do?action=reference&amp;id=559803&amp;bokeeName=fanshaoran" /><br /><strong>Your Name</strong></span><strong><span style="FONT-SIZE: 14pt; COLOR: black">：</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">就是你注册时的用户名。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">Your Reply E-mail</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">：就是你能收到信的</span><span style="FONT-SIZE: 14pt; COLOR: black">e-mail</span><span style="FONT-SIZE: 14pt; COLOR: black">地址</span><span style="FONT-SIZE: 14pt; COLOR: black">,</span><span style="FONT-SIZE: 14pt; COLOR: black">如果注册的时候的</span><span style="FONT-SIZE: 14pt; COLOR: black">e-mail</span><span style="FONT-SIZE: 14pt; COLOR: black">地址收不到信，你就换个不一样的。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">Topic:</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">：</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">选择第一个，</span><span style="FONT-SIZE: 14pt; COLOR: black">General Non-Member Inquiry</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">Subject:</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">：</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">写</span><span style="FONT-SIZE: 14pt; COLOR: black"> About Confirmation e-mail of my account</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">Comments</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">：</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">按照下面写，我就是这样写的，写得不好，有错误大家不要见笑，反正他们能看懂就行：）</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">Hello,my user name is xxx, </span><u><span style="FONT-SIZE: 14pt; COLOR: #333399">xxxxxxx@xxxxxx.com</span></u><span style="FONT-SIZE: 14pt; COLOR: black"> is my e-mail when register,and I have joined 1 hours ago but I </span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">haven&rsquo;t received a confirmation e-mail yet! So I contact you and request to manually confirm my account. And I </span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">want to use another </span><u><span style="FONT-SIZE: 14pt; COLOR: #333399">xxxxxxx@xxxxxxx.com</span></u><span style="FONT-SIZE: 14pt; COLOR: black"> to receive your letters.Now I was worried because you don`t agree </span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">one has more than one account. I am looking forward your e-mail,thanks,good luck! </span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">Please copy the security code</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: black">：</span></strong><span style="FONT-SIZE: 14pt; COLOR: black">填写右边的数字和字母就</span><span style="FONT-SIZE: 14pt; COLOR: black">Submit</span><span style="FONT-SIZE: 14pt; COLOR: black">吧，一般在</span><span style="FONT-SIZE: 14pt; COLOR: black">1</span><span style="FONT-SIZE: 14pt; COLOR: black">天</span><span style="FONT-SIZE: 14pt; COLOR: black">-2</span><span style="FONT-SIZE: 14pt; COLOR: black">天会给你开通你的帐号的。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">快快加入</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a></span><span style="FONT-SIZE: 14pt; COLOR: black">吧，边上网边看广告边赚钱，一举两得，何乐而不为。。。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=laliga"><span style="COLOR: #333399">注册地址</span></a>:</span><span style="FONT-SIZE: 14pt; COLOR: black">：</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">http://adbux.org/</span></a>&nbsp;</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: red">6</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: red">，如果通过</span></strong><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><strong><span style="COLOR: red">AdBux</span></strong></a></span><strong>&nbsp;</strong><strong><span style="FONT-SIZE: 14pt; COLOR: red">赚更多的钱</span></strong></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: black">当我们打开</span></strong><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a>&nbsp;</span><span style="FONT-SIZE: 14pt; COLOR: black">网站的时候，你会发现它的首页就直接写出了赚钱的计划：</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; At <a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a>&nbsp;, you get paid to click on ads and visit websites. The process is easy! You simply click a link and view a website for <strong>30</strong> seconds to earn money. You can earn even more by referring friends. You&rsquo;ll get paid $0.01 for each website you personally view and $0.01 for each website your referrals view. Payment requests can be made every day and are processed through PayPal. The minimum payout is $10.00.<br /><br /><strong>Earnings Example</strong><br />You click 10 ads per day = $0.10!&nbsp;&nbsp; </span><span style="FONT-SIZE: 14pt; COLOR: black">（你每天自己点能赚</span><span style="FONT-SIZE: 14pt; COLOR: black">0.10</span><span style="FONT-SIZE: 14pt; COLOR: black">美元，</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a>&nbsp;</span><span style="FONT-SIZE: 14pt; COLOR: black">每天大约给你</span><span style="FONT-SIZE: 14pt; COLOR: black">10</span><span style="FONT-SIZE: 14pt; COLOR: black">个广告）</span><span style="FONT-SIZE: 14pt; COLOR: black"><br />10 referrals click 10 ads per day = $1.00! </span><span style="FONT-SIZE: 14pt; COLOR: black">（假如你的下线有</span><span style="FONT-SIZE: 14pt; COLOR: black">10</span><span style="FONT-SIZE: 14pt; COLOR: black">个，你的下线能给你赚：</span><span style="FONT-SIZE: 14pt; COLOR: black">1</span><span style="FONT-SIZE: 14pt; COLOR: black">美元，注意：</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a>&nbsp;</span><span style="FONT-SIZE: 14pt; COLOR: black">是你的下线点击赚多少，你也是赚多少。）</span><span style="FONT-SIZE: 14pt; COLOR: black"><br />Your weekly earnings = $7.70! </span><span style="FONT-SIZE: 14pt; COLOR: black">（你每周能赚</span><span style="FONT-SIZE: 14pt; COLOR: black">7.70</span><span style="FONT-SIZE: 14pt; COLOR: black">美元）</span><span style="FONT-SIZE: 14pt; COLOR: black"><br />Your monthly earnings = $30.80! </span><span style="FONT-SIZE: 14pt; COLOR: black">（你一个月能赚</span><span style="FONT-SIZE: 14pt; COLOR: black">30.80</span><span style="FONT-SIZE: 14pt; COLOR: black">美元）</span><span style="FONT-SIZE: 14pt; COLOR: black"><br /><br />The above example is based only on 10 referrals and 10 daily clicks. Some days you will have more clicks available, some days you will have less. What if you had more referrals? What if there were more ads available?</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">（上面的例子是在假如你有</span><span style="FONT-SIZE: 14pt; COLOR: black">10</span><span style="FONT-SIZE: 14pt; COLOR: black">个下线的情况下，每天有</span><span style="FONT-SIZE: 14pt; COLOR: black">10</span><span style="FONT-SIZE: 14pt; COLOR: black">个点击广告时你的详细收入，有时多点，有时少点。但是如果你能更多的下线呢？假如你每天有更多的广告呢？）</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">显然，假如我们要在</span><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a>&nbsp;</span><span style="FONT-SIZE: 14pt; COLOR: black">赚到更多的钱，我们就要推荐更多的人来参与这一广告点击。</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><span style="FONT-SIZE: 14pt; COLOR: black">现在有</span><span style="FONT-SIZE: 14pt; COLOR: black">2000</span><span style="FONT-SIZE: 14pt; COLOR: black">多人每天可收到</span><span style="FONT-SIZE: 14pt; COLOR: black">70-100$(<a href="http://adbux.org/?r=fansr"><span style="COLOR: #333399">AdBux</span></a> </span><span style="FONT-SIZE: 14pt; COLOR: black">官方信息</span><span style="FONT-SIZE: 14pt; COLOR: black">)</span><span style="FONT-SIZE: 14pt; COLOR: black">！</span></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: red">月赚上万不是梦，快点来加入</span></strong><span style="FONT-SIZE: 14pt; COLOR: black"><a href="http://adbux.org/?r=fansr"><strong><span style="COLOR: red">AdBux</span></strong></a></span><strong>&nbsp;</strong><strong><span style="FONT-SIZE: 14pt; COLOR: red">吧！</span></strong></div>
<div style="BACKGROUND: white; WORD-BREAK: break-all; LINE-HEIGHT: 16.5pt" align="left"><strong><span style="FONT-SIZE: 14pt; COLOR: red">7</span></strong><strong><span style="FONT-SIZE: 14pt; COLOR: red">，什么时候会出来新的广告</span></strong></div>
<span style="FONT-SIZE: 14pt; COLOR: black">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style="FONT-SIZE: 14pt; COLOR: black">经过我几天的观察，发现新的广告大约会在晚上</span><span style="FONT-SIZE: 14pt; COLOR: black">10</span><span style="FONT-SIZE: 14pt; COLOR: black">点左右会出来，这时刚好是太平洋时间早上</span><span style="FONT-SIZE: 14pt; COLOR: black">7</span><span style="FONT-SIZE: 14pt; COLOR: black">点多，在晚上</span><span style="FONT-SIZE: 14pt; COLOR: black">23</span><span style="FONT-SIZE: 14pt; COLOR: black">点也就是那边</span><span style="FONT-SIZE: 14pt; COLOR: black">8</span><span style="FONT-SIZE: 14pt; COLOR: black">点多的时候会有更多广告。不过我一般是在早上看下广告，几分钟就</span><span style="FONT-SIZE: 14pt; COLOR: black">OK</span><span style="FONT-SIZE: 14pt; COLOR: black">。。。</span></span><span style="FONT-SIZE: 14pt; COLOR: black">上图是在看广告时右上角的记时数字，你一定要在</span><span style="FONT-SIZE: 14pt; COLOR: black">30</span><span style="FONT-SIZE: 14pt; COLOR: black">秒之后出现</span><span style="FONT-SIZE: 14pt; COLOR: black">Done $ </span><span style="FONT-SIZE: 14pt; COLOR: black">时才能关掉广告。</span>]]>
</content>
</entry>

<entry>
<title>实用的教育才是现实的教育</title>
<link rel="alternate" type="text/html" href="http://www.bokee.net/blogmodule/weblogcomment_viewEntry/833673.html"/>
<issued>2007-06-29T11-39-19 CST</issued> 
<created>2007-06-29T11-39-19 CST</created>
<modified>2008-08-30T22-41-31Z</modified>
<id>tag:fanshaoran.blogchina.com,2005://833673</id>
<author>
<name>fanshaoran</name>
<url>http://www.bokee.net/blogmodule/weblogcomment_index/fanshaoran.html</url>
</author>
<dc:subject>随笔</dc:subject>
<content type="text/html" mode="escaped" xml:lang="zh_CN" xml:base="http://www.bokee.net"> 
<![CDATA[<div></div>
<div>教育的正确或错误不重要，有效才重要。很多家长读了许多教育孩子的书，结果是书读的越多越糟糕，跟孩子搞得像仇敌似的。你不能在孩子面前扮演专家的角色，很多孩子藐视权威，家长越权威，孩子越不听话。社会并不像教育家所认为的那样理性和单纯，很多人写教育孩子的书不是真心为每个孩子和父母想，而是宣传一种他喜欢的教育理念、一种观点，为了维护这个观点，他会故意地把事情说得很简单明了。</div>
<div><span>&nbsp;&nbsp; </span>教育的正确与否不重要，有效才重要。这种观念比较符合现代实用主义的教育思想。我们要教育孩子一些实用的东西，不是只告诉孩子正确的东西，很多正确的东西只能在书本上活着，在生活中往往就死了，起不到任何作用了。实用教育才是现实教育，这种教育不容易妨碍孩子建立适合自己也适合社会的价值体系，伦理与哲学思想，审美态度与世界观。</div>]]>
</content>
</entry>

<entry>
<title>看《恰同学少年》</title>
<link rel="alternate" type="text/html" href="http://www.bokee.net/blogmodule/weblogcomment_viewEntry/642259.html"/>
<issued>2007-03-31T20-33-48 CST</issued> 
<created>2007-03-31T20-33-48 CST</created>
<modified>2008-08-30T16-10-05Z</modified>
<id>tag:fanshaoran.blogchina.com,2005://642259</id>
<author>
<name>fanshaoran</name>
<url>http://www.bokee.net/blogmodule/weblogcomment_index/fanshaoran.html</url>
</author>
<dc:subject>随笔</dc:subject>
<content type="text/html" mode="escaped" xml:lang="zh_CN" xml:base="http://www.bokee.net"> 
<![CDATA[<div style="TEXT-INDENT: 21pt">近期，中央电视一台正在热播电视剧《恰同学少年》。看过几集后，对湖南一师的几位人品高尚、学识渊博、治学严谨的教授的敬佩之情油然而生。象校长孔昭授、教授杨昌济、教务长黎锦熙、徐特立等几位鸿儒，不仅教授学生学业，还教育学生如何做人，更鼓励学生做有益于社会的正大光明的人。毛泽东、蔡和森、何叔衡等老一辈革命家在一师遇到这些良师益友真乃人生之幸事！</div>
<div style="TEXT-INDENT: 21pt">现在的大学在做啥？大学越办越多，学生逐年扩招，有很多人在做学问，但有多少人在用自己的学问推动社会的进步。中国人民大学教授张鸣说：&ldquo;现在的大学，大家都很忙，但大学要做什么？怎么做？其实没有人操心。这样教出来的学生，不会做人，也不会做事。&rdquo;</div>]]>
</content>
</entry>

<entry>
<title>点我网－－超快免费赚钱网站，快快快！！！</title>
<link rel="alternate" type="text/html" href="http://www.bokee.net/blogmodule/weblogcomment_viewEntry/625758.html"/>
<issued>2007-03-23T18-00-53 CST</issued> 
<created>2007-03-23T18-00-53 CST</created>
<modified>2008-08-30T17-39-15Z</modified>
<id>tag:fanshaoran.blogchina.com,2005://625758</id>
<author>
<name>fanshaoran</name>
<url>http://www.bokee.net/blogmodule/weblogcomment_index/fanshaoran.html</url>
</author>
<dc:subject>网络赚钱</dc:subject>
<content type="text/html" mode="escaped" xml:lang="zh_CN" xml:base="http://www.bokee.net"> 
<![CDATA[<p style="BACKGROUND: white; LINE-HEIGHT: 180%"><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">点我网－－超快免费赚钱网站，快快快！！！</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana"><br /></span><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">最爽的中文广告在线点击，不用像驴站那样在新窗口中打开，直接在原窗口中打开，右下角（或者右上角）有一个</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana">&quot;Next&quot;</span><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">图标，图标下面有一个</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana">30</span><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">秒倒计时的计数器，</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana">30</span><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">秒过后计数器变成</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana">&quot;go&quot;,</span><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">然后点击</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana">&quot;Next&quot;</span><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">，看下一个广告。一天可看无数个广告，不想发展下线想单干的朋友这会有福了。呵呵，不过还是要说一下，支持五层下线，提成分别是</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana">10%</span><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">、</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana">5%</span><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">、</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana">3%</span><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">、</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana">2%</span><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">、</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana">1%</span><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">。支持支付宝付款。</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana">30</span><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">元起付，每周一准时支付。</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana"><br /></span><span class="cls1"><span lang="EN-US" style="COLOR: #111111; FONT-FAMILY: Verdana; mso-bidi-font-family: Arial"><a href="http://www.dian265.com/Refer.aspx?UserName=fanshaoran"><font color="#f73f9a" size="3">http://www.dian265.com/Refer.aspx?UserName=fanshaoran</font></a><o:p></o:p></span></span></p>
<p style="BACKGROUND: white; LINE-HEIGHT: 180%"><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">这是流量站，赚钱的同时展示你的站点</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana">30</span><span style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="宋体">秒</font></span><span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: #9d4470; LINE-HEIGHT: 180%; FONT-FAMILY: Verdana"> <o:p></o:p></span></p>]]>
</content>
</entry>

<entry>
<title>[转]一位女大学生的无耻自白和一位男士的精彩回帖</title>
<link rel="alternate" type="text/html" href="http://www.bokee.net/blogmodule/weblogcomment_viewEntry/620753.html"/>
<issued>2007-03-21T15-46-23 CST</issued> 
<created>2007-03-21T15-46-23 CST</created>
<modified>2008-08-30T16-10-05Z</modified>
<id>tag:fanshaoran.blogchina.com,2005://620753</id>
<author>
<name>fanshaoran</name>
<url>http://www.bokee.net/blogmodule/weblogcomment_index/fanshaoran.html</url>
</author>
<dc:subject>杂类</dc:subject>
<content type="text/html" mode="escaped" xml:lang="zh_CN" xml:base="http://www.bokee.net"> 
<![CDATA[<div style="BORDER-RIGHT: medium none; PADDING-RIGHT: 0cm; BORDER-TOP: medium none; PADDING-LEFT: 0cm; BACKGROUND: white; PADDING-BOTTOM: 4pt; BORDER-LEFT: medium none; PADDING-TOP: 0cm; BORDER-BOTTOM: #dddddd 1pt dotted">
<div style="BORDER-RIGHT: medium none; PADDING-RIGHT: 0cm; BORDER-TOP: medium none; PADDING-LEFT: 0cm; BACKGROUND: white; PADDING-BOTTOM: 0cm; MARGIN: 11.25pt 0cm 0pt; BORDER-LEFT: medium none; LINE-HEIGHT: 180%; PADDING-TOP: 0cm; BORDER-BOTTOM: medium none" align="center"><strong><font size="5"><span style="FONT-SIZE: 13.5pt; COLOR: #ff4400; LINE-HEIGHT: 180%">[</span><span style="FONT-SIZE: 13.5pt; COLOR: #ff4400; LINE-HEIGHT: 180%">转</span><span style="FONT-SIZE: 13.5pt; COLOR: #ff4400; LINE-HEIGHT: 180%">]</span><span style="FONT-SIZE: 13.5pt; COLOR: #ff4400; LINE-HEIGHT: 180%">一位女大学生的无耻自白和一位男士的精彩回帖</span></font></strong></div>
</div>
<div>&nbsp;</div>
<div><span style="COLOR: black">我是一个</span><span style="COLOR: black">XX</span><span style="COLOR: black">地的女大学生，刚来这里。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　我真不能理解，到底日本人对你们做过什么？要你们那么去恨他们？我现</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　在知道了，你们是在妒嫉！从你们那些所谓</span><span style="COLOR: black">&ldquo;</span><span style="COLOR: black">爱国者</span><span style="COLOR: black">&rdquo;</span><span style="COLOR: black">龌龊的嘴脸中我看出来了，其实你们自己也知道你们是不如日本人的，尤其作为男人，你们这些中国男人更会觉得自悲不堪。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　我从小就喜欢日本，喜欢日本人。我最大的梦想就是嫁个日本男人，我周围的许多朋友也都有这样的想法。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　我知道一定会有一些所谓的</span><span style="COLOR: black">&ldquo;</span><span style="COLOR: black">正人君子</span><span style="COLOR: black">&rdquo;</span><span style="COLOR: black">会</span><span style="COLOR: black">&ldquo;</span><span style="COLOR: black">义正词严</span><span style="COLOR: black">&rdquo;</span><span style="COLOR: black">地指责我们</span><span style="COLOR: black">&ldquo;</span><span style="COLOR: black">没尊严</span><span style="COLOR: black">&rdquo;</span><span style="COLOR: black">。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　但作为我们女人，我们永远只会选择强者做我们的丈夫，你们中国男人难道算是强者吗？你们人口是日本的十倍，所占资源和领土面积又不知要比日本多多少倍，但你们平均每人创造的财富有日本男人的百分之一多么？</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　你们的行为素质有日本男人的百分之一高么？答案是没有。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　作为中国男人，你们有着绝对的地理优势，但你们打仗打不过日本，拼经</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　济拼不过日本，拼体质拼科技拼文学拼教育</span><span style="COLOR: black">&hellip;&hellip;</span><span style="COLOR: black">你们哪个有日本强？你们这些中国男人自己不觉得羞耻还有脸去怪我们女人吗？你们自己没尽到责任给老祖宗蒙羞还要对着我们说三道四推卸责任，只能让身为中国女人的我感到羞耻我就是要嫁给日本男人，我只会选择强者！</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　你们这些所谓的</span><span style="COLOR: black">&ldquo;</span><span style="COLOR: black">爱国者</span><span style="COLOR: black">&rdquo;</span><span style="COLOR: black">除了在网上骂骂人以外没别的出息，你们有本事把自己国家搞好，让日本女人成天想着嫁给中国男人，让日本女星穿着中国军旗装，可你们没有这个本事！</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　你们无能！你们成天叫喊着要让日本道歉，可这个世界上有强者对弱者道歉的道理么？为什么日本宁可对韩国人道歉也不愿对中国道歉？因为你们</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　中国男人连韩国男人都不如，我们女人还能指望你们干什么呢？！</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　这就是我所要说的话，我知道一定会有不少人来骂我的，但无所谓，因为我看穿你们了！</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　</span><span style="COLOR: black">---------------------------------------------- <br /></span><span style="COLOR: black"><br /><br /></span><span style="COLOR: black">　　</span><span style="COLOR: black">[</span><span style="COLOR: black">以下是回帖</span><span style="COLOR: black">]</span><span style="COLOR: black">：</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　我知道这位上海小姐，不管你是不是上海或者是中国其他什么地方的，这</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　都不重要，我以下说的话可能你也看不见，你看不见并不代表我就不说，我不是为你发言，我是为我自己，为所有中国的爱国同胞发言，所以你不要认为自己多了不起，你只不过大大学生而已，我都大学毕业很久了，加上社会阅历很生活经验，基本上可以当你的导师了。所以请你以后不要动不动就说</span><span style="COLOR: black">&ldquo;</span><span style="COLOR: black">我是大学生</span><span style="COLOR: black">&rdquo;</span><span style="COLOR: black">，会被人笑话的，我这里找不到工作的大学生很多。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　我看了你的发言，我分析了一下你说的基本观点：中国人素质差，素质低下，被日本人看不起，你喜欢强者，你认为日本人是强者，所以你要嫁给日本人，我想我没说错吧！首先我们来说中国人的素质问题。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　解放前的风风雨雨我就不说了，但是在解放后，中国消灭了四害，人民的主人翁精神发挥得淋漓尽致，人人都努力生产，为国家，为民族，人民的道德水品空前的提高，甚至做到了夜不闭户的程度，这需要多么强的自觉性。这种全国上下一条心的程度，我想不比日本的武士道精神差吧。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　但是日本又是在怎样对待中国的呢？这个世界没有无缘无故的爱，也没有无缘无故的恨。我小时候根本没有恨过日本，相反，我很喜欢日本的一休哥，花仙子等卡通形象，还很喜欢看日本电视剧《警犬卡尔》、《血凝》等影片，也很喜欢高仓建，但是为什么我在长大了却对日本有着刻骨铭心的恨呢？</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　这不是</span><span style="COLOR: black">zgzf</span><span style="COLOR: black">宣传的结果，因为</span><span style="COLOR: black">zgzf</span><span style="COLOR: black">是单方面的一相情愿的在宣传中日友好日本人在中国出了事，受到的照顾比中国人好，甚至叫特权阶级。在政府这样的宣传下仍不能消除中国老百姓对日本的敌意，为什么？</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　让我们看看日本对我们做了什么吧，日本侵华就不说了，我们都清楚日本是怎样用刀砍下中国人的头颅，在头颅落下的瞬间，鲜血中颈总动脉一喷而出，而头上的那张脸却在努力的挣扎，嘴张得大大得想尽力的呼吸，但是这是徒劳的。面队这样的野兽，中国人民以德报怨，可是日本呢，日本一再修改教科书，否认大屠杀，否认侵略，这好比我杀了你父亲，我尽情的蹂躏他的尸体，然后我对人说，我没有杀他，他人笨，该死，他没有用，该死。我想这种事情你不会接受吧。要是我也不会接受，因为我需要进行换位思考，而你有过吗？这种思考是人在做事情前的基本思考。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　德国和日本一样，有过军国主义，进行过屠杀犹太人，但是你问现在的犹太人，有多少人恨德国人，你问过吗？我问过，他说我不恨德国人，但是我很德国法西斯。为什么，因为德国是光明磊落的民族，</span><span style="COLOR: black">&ldquo;</span><span style="COLOR: black">跪着的德国人比站着的日本人跟高大</span><span style="COLOR: black">&rdquo;&mdash;&mdash;</span><span style="COLOR: black">这句话不是没有原因。德国政府历届总理都很郑重的向二战中的受害者道歉，</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　在受害者的纪念碑前流下过忏悔的眼泪，我知道你会说这只代表总理个</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　人，我的回答是</span><span style="COLOR: black">&mdash;&mdash;</span><span style="COLOR: black">错，为什么？一个人能坐在总理这个位置上，如果没有人民的支持，他没有机会当总理，所以，他的忏悔就代表全部德国人的忏悔。如果德国民众不为二战感到羞愧的话，我想德国总理在道歉后就会有数不尽的叫骂，但事实是德国民众骂了吗，没有。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　一样的道理，日本首相之所以可以屡次参拜，就是因为有国民支持，如果只是小部</span><span style="COLOR: black">分人支持，日本首相是万万不敢这样做的，所以，现在的日本可以说举国上下都是反对承认侵略历史，反对承认战争和屠杀的，请问，连</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　最基本的历史都不承认的民族，还有什么信用可以讲，连基本信用都没有的民族</span><span style="COLOR: black">,</span><span style="COLOR: black">还是优秀的民族吗？</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　中国的三峡工程，日本企业卖给中方的</span><span style="COLOR: black">500</span><span style="COLOR: black">吨优质钢铁，进行抽样检测，</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　居然是全部不合格，如果这样的材料用在三峡工程，会有什么严重的后果，如果你不知道，我举例吧，你就可能在大街上游泳了。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　当中方提出退货时，日本居然说中国的检测技术不科学，不严谨。就算是吧，为什</span><span style="COLOR: black">么在不科学严谨的检测下都不能通过，你还有什么资格对中方说三道四的，事实是后来日方的检测结果和中方一样，搞到最后一样退货。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　日本卖到中国的产品，都是三流产品，和中国的技术合作都是过时技术，这不是我胡说造谣，到过欧洲发达国家的人都知道是怎么样，中国上市的日本最新款</span><span style="COLOR: black">MD</span><span style="COLOR: black">或者其他商品，在欧洲都属于淘汰产品，在日本不多见，而在中国却是最新科技，而且价格奇高，这是典型的商业歧视，连商业这种讲诚信的事情都不能做到公正的国家和民族，那还有什么值得我们对其有好感呢？</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　你说中国的民族工业落后，我承认中国在某些领域落后，但是中国在更多</span><span style="COLOR: black">的领域做到了后来居上，在彩电，背投，</span><span style="COLOR: black">CPU</span><span style="COLOR: black">（日本至今没有开发出自己的</span><span style="COLOR: black">CPU</span><span style="COLOR: black">），空调、冰箱、造船、航空等领域做得不比日本人更好吗？想想中国这个比日本晚起步，在一个被蒋介石运走了所有的黄金和财产的土地上，从</span><span style="COLOR: black">1976</span><span style="COLOR: black">年至今短短</span><span style="COLOR: black">27</span><span style="COLOR: black">年时间做到这个程度，这需要多少人努多少力才能做到的啊。美国人能做到吗？日本人能吗？</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　在军工产业方面，日本能做得比中国好吗？日本的</span><span style="COLOR: black">F2</span><span style="COLOR: black">战斗机是美国的</span><span style="COLOR: black">F16</span><span style="COLOR: black">放大了</span><span style="COLOR: black">15\\%</span><span style="COLOR: black">的改造型，日本没有自己的完善的风洞，没有中国在空气动力学方面雄厚的技术储备，只能照搬美国现成的东西。日本的</span><span style="COLOR: black">90</span><span style="COLOR: black">坦克是很先进的，人进去的感觉象进高级轿车，把太多的尽力和财力没有放在重点上，他的坦克炮是买的德国的，因为它没有这个科技和制造能力，而中国</span><span style="COLOR: black">98</span><span style="COLOR: black">坦克的</span><span style="COLOR: black">125</span><span style="COLOR: black">炮的火力在</span><span style="COLOR: black">4000</span><span style="COLOR: black">米</span><span style="COLOR: black">的距离上仍可以击穿</span><span style="COLOR: black">500&mdash;900<span>毫米</span>的均质装甲，说形象点就是美国最先进的M1A2</span><span style="COLOR: black">都不能做到。　</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　你说中国人没有素质，那没有素质的人怎么能办到这些举世瞩目的成绩？</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　他们让世界惊叹。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　作为中国人，我是无比的骄傲和自豪，我想这种感觉你是不会有的，因为</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　在你的文章中到处都是</span><span style="COLOR: black">&ldquo;</span><span style="COLOR: black">你们中国人</span><span style="COLOR: black">&rdquo;</span><span style="COLOR: black">之类的言语，你早当自己是日本人了。所以我认为在这点上你可以说是麻木的。一个连起码爱国心都没有的人，还有什么资格在用汉字在这里发表言论？</span><span style="COLOR: black">--</span><span style="COLOR: black">因为你抛弃了你的国家，抛弃了生你养你的祖国。你会说生你养你的是你的父母？是，是你的父母生你养你，要是没有国家，没有共产党为国家、为人民做的贡献，我想你父亲早让日本鬼子砍了头，你母亲早做慰安妇了，那还有你在这里说话的机会和资格？</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　我不诅咒你什么，看现实吧：小山智利（原名何智利），我不想叫它的中文名字，</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　因为它是日本人，我从来都不当它是中国人，炎黄会因为有这样的子孙而羞愧难忍。我们为之愤怒，那个为了日本，在球场上大叫</span><span style="COLOR: black">&ldquo;</span><span style="COLOR: black">哟西</span><span style="COLOR: black">&rdquo;</span><span style="COLOR: black">的日本女人，现在在日本又过得在怎样呢</span><span style="COLOR: black">&hellip;&hellip;</span><span style="COLOR: black">没有人同情它。包括它的父母。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　它战胜过邓亚萍，但是现在它又怎样呢，在最近的乒乓球锦标赛中第一轮就被淘汰，自从它去了日本就在也没有拿过冠军，而中国乒乓球队员依然屹立在世界冠军的领奖台上，为什么？因为有祖国的强大支持，有蔡振华这样放弃国外优厚待遇甘心为国家奉贤的优秀的教练员。我想你不会说他不优秀吧？</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　日本是有很多优点，难道就没有缺点吗？你知道日本国民的阴暗面吗？你</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　去过日本吗？你没有去过，但是我去过。日本人在社交礼仪上做得很到位，但是对你礼貌并不代表多你友好，很多在我之前去日本的朋友告诉我，</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　日本人对你彬彬有礼，实际上是拒人于千里之外。外国人很难真正融入日</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　本社会当中。日本在礼貌的外壳下是什么？</span><span style="COLOR: black">--</span><span style="COLOR: black">在我住的地方，经常都有女孩子的内衣裤被偷，这不是少数现象，而是很普遍的，日本人的性开放程度可以说是赶超欧美的。日本的色情产业是举世注目的，除了美国就是日本了，而日本色情电影在</span><span style="COLOR: black">**</span><span style="COLOR: black">程度上是世界第一的。你说这是个人自由。好，那我问你：你的日本老公每天晚上出去找小姐或者有其他性伴侣，我想你不会说是个人自由吧？人不能双重标准，那样就是没有标准，而你就是那种没有标准、凭自己的一相情愿对日本男人大加赞赏的无知女人。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　你说你读过大学，不是无知的，那我告诉你：我也读过，还当过讲师。但是大学才毕业的学生的能力离社会对个人能力的基本需求还差很远，你要走的路还很长。我有个朋友取了日本女人做老婆，这个女人经常会让我的这位朋友去找小姐，说是要保持新鲜感，这不是在编故事，我说的是事实！我想你不会让自己的男人找小姐吧？？？</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　中国人有缺点，但是我们勇于面对，并努力改正。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　而日本呢，面对自己的种种丑行却视而不见，这是优秀民族的作风吗？在二战问题上，屡屡翻案，美化战争。这是人的行为吗？一个不敢面对缺点，反而加以包庇的民族，我看不出来它的优秀在哪里。你会说</span><span style="COLOR: black">zgzf</span><span style="COLOR: black">不是称职的政府。对，我承认</span><span style="COLOR: black">zgzf</span><span style="COLOR: black">有腐败，中国社会制度不完善，但是</span><span style="COLOR: black">zgzf</span><span style="COLOR: black">至少能让你吃饱了撑的在这里说你爱日本。你鄙视中国，鄙视</span><span style="COLOR: black">zgzf</span><span style="COLOR: black">。鄙视全中国人，但是至少你记住，你走到那里人家都会说你是华人，你的血液流着炎黄的血，你若如此鄙视身为炎黄子孙那就请你不要带着祖宗的血骂祖宗！</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　你知道在中国的日本人最津津乐道的是什么吗？那就是中国女人。说中国女人是如何的舒服，是如何蹂躏中国女人，这让我想起了中国在二战中被侮辱杀害的同胞。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　愤怒啊，只要有血性的中国人都不会原谅日本人的兽性。</span><span style="COLOR: black">--</span><span style="COLOR: black">而你，只不过</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　是日本下一个可以征服然后抛弃的玩物。　</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　我不会为你伤悲，因为你不是中国人。</span><span style="COLOR: black"> <br /><br /></span><span style="COLOR: black">　　各位网友，如果大家认为我说的有道理，请广为转贴，谢谢</span></div>]]>
</content>
</entry>

</feed>
