<?xml version="1.0" encoding="UTF-8"?>
  <feed xmlns="http://www.w3.org/2005/Atom">
  <title type="html"><![CDATA[天大地博-天博工作室]]></title>
  <subtitle type="html"><![CDATA[Heaven and Earth is Big, Vast Vista]]></subtitle>
  <id>http://www.hot1.com.cn/</id>
  <link rel="alternate" type="text/html" href="http://www.hot1.com.cn/" /> 
  <link rel="self" type="application/atom+xml" href="http://www.hot1.com.cn/atom.asp" /> 
  <generator uri="http://www.pjhome.net/" version="2.8">PJBlog3</generator> 
  <updated>2008-07-29T09:56:58+08:00</updated>

  <entry>
	  <title type="html"><![CDATA[位运算常用操作总结]]></title>
	  <author>
		 <name>月亮太阳</name>
		 <uri>http://www.hot1.com.cn/</uri>
		 <email>webmaster@stdns.net</email>
	  </author>
	  <category term="" scheme="http://www.hot1.com.cn/default.asp?cateID=4" label="OOP" /> 
	  <updated>2008-07-29T09:56:58+08:00</updated>
	  <published>2008-07-29T09:56:58+08:00</published>
		  <summary type="html"><![CDATA[位运算应用口诀<br/>清零取反要用与，某位置一可用或<br/>若要取反和交换，轻轻松松用异或<br/>移位运算<br/>要点 1 它们都是双目运算符，两个运算分量都是整形，结果也是整形。<br/>&nbsp;&nbsp;&nbsp;&nbsp;2 &#34; &lt; &lt;&#34; 左移：右边空出的位上补0，左边的位将从字头挤掉，其值相当于乘2。<br/>&nbsp;&nbsp;&nbsp;&nbsp;3 &#34;&gt;&gt;&#34;右移：右边的位被挤掉。对于左边移出的空位，如果是正数则空位补0，若为负数，可能补0或补1，这取决于所用的计算机系统。<br/>&nbsp;&nbsp;&nbsp;&nbsp;4 &#34;&gt;&gt;&gt;&#34;运算符，右边的位被挤掉，对于左边移出的空位一概补上0。<br/>位运算符的应用 (源操作数s 掩码mask)<br/>(1) 按位与-- &amp;<br/>1 清零特定位 (mask中特定位置0，其它位为1，s=s&amp;mask)<br/>2 取某数中指定位 (mask中特定位置1，其它位为0，s=s&amp;mask)<br/>(2) 按位或-- ¦<br/>&nbsp;&nbsp;&nbsp;&nbsp;常用来将源操作数某些位置1，其它位不变。 (mask中特定位置1，其它位为0 s=s ¦mask)<br/>(3) 位异或-- ^<br/>1 使特定位的值取反 (mask中特定位置1，其它位为0 s=s^mask)<br/>2 不引入第三变量，交换两个变量的值 (设 a=a1,b=b1)<br/>&nbsp;&nbsp;&nbsp;&nbsp;目 标&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;操 作&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;操作后状态<br/>a=a1^b1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a=a^b&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a=a1^b1,b=b1<br/>b=a1^b1^b1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b=a^b&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a=a1^b1,b=a1<br/>a=b1^a1^a1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a=a^b&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a=b1,b=a1<br/>二进制补码运算公式：<br/>-x = ~x + 1 = ~(x-1)<br/>~x = -x-1<br/>-(~x) = x+1<br/>~(-x) = x-1<br/>x+y = x - ~y - 1 = (x ¦y)+(x&amp;y)<br/>x-y = x + ~y + 1 = (x ¦~y)-(~x&amp;y)<br/>x^y = (x ¦y)-(x&amp;y)<br/>x ¦y = (x&amp;~y)+y<br/>x&amp;y = (~x ¦y)-~x<br/>x==y:&nbsp;&nbsp;&nbsp;&nbsp;~(x-y ¦y-x)<br/>x!=y:&nbsp;&nbsp;&nbsp;&nbsp;x-y ¦y-x<br/>x &lt; y:&nbsp;&nbsp;&nbsp;&nbsp;(x-y)^((x^y)&amp;((x-y)^x))<br/>x &lt;=y:&nbsp;&nbsp;&nbsp;&nbsp;(x ¦~y)&amp;((x^y) ¦~(y-x))<br/>x &lt; y:&nbsp;&nbsp;&nbsp;&nbsp;(~x&amp;y) ¦((~x ¦y)&amp;(x-y))//无符号x,y比较<br/>x &lt;=y:&nbsp;&nbsp;&nbsp;&nbsp;(~x ¦y)&amp;((x^y) ¦~(y-x))//无符号x,y比较<br/>应用举例<br/>(1) 判断int型变量a是奇数还是偶数&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br/>a&amp;1&nbsp;&nbsp;= 0 偶数<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a&amp;1 =&nbsp;&nbsp;1 奇数<br/>(2) 取int型变量a的第k位 (k=0,1,2……sizeof(int))，即a&gt;&gt;k&amp;1<br/>(3) 将int型变量a的第k位清0，即a=a&amp;~(1 &lt; &lt;k)<br/>(4) 将int型变量a的第k位置1， 即a=a ¦(1 &lt; &lt;k)<br/>(5) int型变量循环左移k次，即a=a &lt; &lt;k ¦a&gt;&gt;16-k&nbsp;&nbsp;(设sizeof(int)=16)<br/>(6) int型变量a循环右移k次，即a=a&gt;&gt;k ¦a &lt; &lt;16-k&nbsp;&nbsp;(设sizeof(int)=16)<br/>(7)整数的平均值<br/>对于两个整数x,y，如果用 (x+y)/2 求平均值，会产生溢出，因为 x+y 可能会大于INT_MAX，但是我们知道它们的平均值是肯定不会溢出的，我们用如下算法：<br/>int average(int x, int y)&nbsp;&nbsp;//返回X,Y 的平均值<br/>{&nbsp;&nbsp; <br/>&nbsp;&nbsp;&nbsp;&nbsp;return (x&amp;y)+((x^y)&gt;&gt;1);<br/>}<br/>(8)判断一个整数是不是2的幂,对于一个数 x &gt;= 0，判断他是不是2的幂<br/>boolean power2(int x)<br/>{<br/>&nbsp;&nbsp;&nbsp;&nbsp;return ((x&amp;(x-1))==0)&amp;&amp;(x!=0)；<br/>}<br/>(9)不用temp交换两个整数<br/>void swap(int x , int y)<br/>{<br/>&nbsp;&nbsp;&nbsp;&nbsp;x ^= y;<br/>&nbsp;&nbsp;&nbsp;&nbsp;y ^= x;<br/>&nbsp;&nbsp;&nbsp;&nbsp;x ^= y;<br/>}<br/>(10)计算绝对值<br/>int abs( int x )<br/>{<br/>int y ;<br/>y = x &gt;&gt; 31 ;<br/>return (x^y)-y ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//or: (x+y)^y<br/>}<br/>(11)取模运算转化成位运算 (在不产生溢出的情况下)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a % (2^n) 等价于 a &amp; (2^n - 1)<br/>(12)乘法运算转化成位运算 (在不产生溢出的情况下)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a * (2^n) 等价于 a &lt; &lt; n<br/>(13)除法运算转化成位运算 (在不产生溢出的情况下)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a / (2^n) 等价于 a&gt;&gt; n<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;例: 12/8 == 12&gt;&gt;3<br/>(14) a % 2 等价于 a &amp; 1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br/>(15) if (x == a) x= b;<br/>　　&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else x= a;<br/>　　&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;等价于 x= a ^ b ^ x;<br/>(16) x 的 相反数 表示为 (~x+1)<br/><br/><br/>实例<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;功能&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;示例&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦&nbsp;&nbsp;&nbsp;&nbsp;位运算<br/>----------------------+---------------------------+--------------------<br/>去掉最后一位&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (101101-&gt;10110)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x &gt;&gt; 1<br/>在最后加一个0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (101101-&gt;1011010)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x &lt; &lt; 1<br/>在最后加一个1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (101101-&gt;1011011)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x &lt; &lt; 1+1<br/>把最后一位变成1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (101100-&gt;101101)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x ¦ 1<br/>把最后一位变成0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (101101-&gt;101100)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x ¦ 1-1<br/>最后一位取反&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (101101-&gt;101100)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x ^ 1<br/>把右数第k位变成1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (101001-&gt;101101,k=3)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x ¦ (1 &lt; &lt; (k-1))<br/>把右数第k位变成0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (101101-&gt;101001,k=3)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x &amp; ~ (1 &lt; &lt; (k-1))<br/>右数第k位取反&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (101001-&gt;101101,k=3)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x ^ (1 &lt; &lt; (k-1))<br/>取末三位&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (1101101-&gt;101)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x &amp; 7<br/>取末k位&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (1101101-&gt;1101,k=5)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x &amp; ((1 &lt; &lt; k)-1)<br/><br/>取右数第k位&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (1101101-&gt;1,k=4)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x &gt;&gt; (k-1) &amp; 1<br/><br/>把末k位变成1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (101001-&gt;101111,k=4)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x ¦ (1 &lt; &lt; k-1)<br/>末k位取反&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (101001-&gt;100110,k=4)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x ^ (1 &lt; &lt; k-1)<br/>把右边连续的1变成0&nbsp;&nbsp;&nbsp;&nbsp;¦ (100101111-&gt;100100000)&nbsp;&nbsp;&nbsp;&nbsp;¦ x &amp; (x+1)<br/>把右起第一个0变成1&nbsp;&nbsp;&nbsp;&nbsp;¦ (100101111-&gt;100111111)&nbsp;&nbsp;&nbsp;&nbsp;¦ x ¦ (x+1)<br/>把右边连续的0变成1&nbsp;&nbsp;&nbsp;&nbsp;¦ (11011000-&gt;11011111)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x ¦ (x-1)<br/>取右边连续的1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (100101111-&gt;1111)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ (x ^ (x+1)) &gt;&gt; 1<br/>去掉右起第一个1的左边 ¦ (100101000-&gt;1000)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦ x &amp; (x ^ (x-1))<br/>判断奇数&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(x&amp;1)==1<br/>判断偶数 (x&amp;1)==0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br/><br/>例如求从x位（高）到y位（低）间共有多少个1<br/><br/>public static int FindChessNum(int x, int y, ushort k)<br/>{<br/>&nbsp;&nbsp;int re = 0;<br/>&nbsp;&nbsp;for (int i = y; i &lt;= x; i++)<br/>&nbsp;&nbsp;{<br/>&nbsp;&nbsp;&nbsp;&nbsp; re += ((k &gt;&gt; (i - 1)) &amp; 1);<br/>&nbsp;&nbsp;}<br/>&nbsp;&nbsp;return re;<br/>} ]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.hot1.com.cn/article.asp?id=334" /> 
	  <id>http://www.hot1.com.cn/default.asp?id=334</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[HTML页面中，通过JS模拟点击，兼容FF/IE浏览器]]></title>
	  <author>
		 <name>月亮太阳</name>
		 <uri>http://www.hot1.com.cn/</uri>
		 <email>webmaster@stdns.net</email>
	  </author>
	  <category term="" scheme="http://www.hot1.com.cn/default.asp?cateID=6" label="Resource" /> 
	  <updated>2008-07-26T08:43:53+08:00</updated>
	  <published>2008-07-26T08:43:53+08:00</published>
		  <summary type="html"><![CDATA[我们在页面中有时会需要用到点击一个按钮的同时，也同时可以激活另一个按钮的点击事件，IE中很简单的用按钮.click就可以，但FF下却无效，以下这段代码，可以兼容FF/IE浏览器。<br/><br/><strong>注：obj为另一个按钮的对象。</strong><br/><br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.hot1.com.cn/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent"><br/>if( document.cr&#101;ateEvent) {<br/> var evObj = document.cr&#101;ateEvent(&#39;MouseEvents&#39;);<br/> evObj.initEvent(&#39;click&#39;, true, false);<br/> obj.dispatchEvent(evObj);<br/>}else if(document.cr&#101;ateEventObject){<br/> obj.fireEvent(&#39;onclick&#39;);<br/>}<br/></div></div>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.hot1.com.cn/article.asp?id=333" /> 
	  <id>http://www.hot1.com.cn/default.asp?id=333</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[Windows下SQLServer的集群配置]]></title>
	  <author>
		 <name>月亮太阳</name>
		 <uri>http://www.hot1.com.cn/</uri>
		 <email>webmaster@stdns.net</email>
	  </author>
	  <category term="" scheme="http://www.hot1.com.cn/default.asp?cateID=6" label="Resource" /> 
	  <updated>2008-07-21T15:02:07+08:00</updated>
	  <published>2008-07-21T15:02:07+08:00</published>
		  <summary type="html"><![CDATA[基本配置<br/><br/>一、文件系统要求：<br/>1、至少有二个分区；<br/>2、系统分区不小于10G；<br/>3、分区格式必须是NTFS。<br/><br/>二、补丁安装要求：<br/>1、先安装完毕WINDOWS 2000 SP4+冲击波+震荡波补丁；<br/>2、将WINDOWS 2000补丁升级到最新后才可安装cluster 和SQL Server；<br/>3、SQL Server补丁需升级到Service Pack 3。<br/><br/>三、Cluster信息：<br/><br/>1．Cluster名称，IP地址1个；<br/><br/>2．节点A名称，IP地址2个（一个公网，一个私网）；<br/><br/>3．节点B名称，IP地址2个（一个公网，一个私网）；<br/><br/>4．SQL Server名称，IP地址1个。<br/>Server A<br/><br/>Intel PRO/1000集成（千兆网卡）作对外通信，地址：192.168.1.1<br/><br/><br/>Intel PRO/100 用作两台主机之间的心跳线 IP地址：10.10.10.1<br/><br/><br/>主机名为： SQLC1<br/><br/>Server B<br/><br/>Intel PRO/1000集成（千兆网卡）作对外通信，地址：192.168.1. 2<br/><br/><br/>Intel PRO/100用作两台主机之间的心跳线 IP地址：10.10.10.2<br/><br/><br/>主机名为： SQLC2<br/>存储空间（这里指磁盘阵列） 分配20G空间<br/> <br/>集群信息：<br/><br/>IP地址：192.168.1.3<br/><br/>NETBIOS名： SQL1<br/>SQL Server 2000信息：<br/><br/>IP地址：192.168.1.4<br/><br/>SQL名称：SQLcluster<br/><br/><br/><br/><br/><br/>Cluster 安装<br/><br/><br/>安装前准备：<br/>1、在安装cluster 服务前将机器加入到域（不是必需的）；<br/>2、每台server上必须有两张网卡，其中的一张网卡需要用心跳线连接；<br/>3、必须有一个公共的磁盘，如磁盘柜，并且磁盘格式必须为ntfs格式。<br/><br/><br/><br/>一、配置网络信息<br/><br/>SERVER A 加电 SERVER B 加电<br/>&nbsp;&nbsp;在SERVER A上安装WIN2000 AD SERVER 将主机名设成SQLC1。<br/>&nbsp;&nbsp;&nbsp;&nbsp;公网IP：192.168.1. 1 （DNS：主192.168.1.254）<br/>心跳IP：10.10.10.1 （网关和DNS不用填；去掉所有的dns server地址，去掉append these dns suffixes 前面的勾，在wins 选项里的 选中 Disable NetBIOS over TCP/IP 选项 ）<br/>&nbsp;&nbsp;在SERVER B上安装WIN2000 AD SERVER 将主机名设成SQLC2。<br/>&nbsp;&nbsp;&nbsp;&nbsp;公网IP：192.168.1. 2 （DNS：主192.168.1. 254）<br/>心跳IP：10.10.10.2 （网关和DNS不用填；去掉所有的dns server地址，去掉append these dns suffixes 前面的勾，在wins 选项里的 选中 Disable NetBIOS over TCP/IP 选项 ）<br/><br/> <br/>二、配置集群<br/><br/>SERVER A开机<br/>&nbsp;&nbsp;在存储阵列的管理界面里创建VDisk20G,然后创建逻辑盘，在磁盘管理其中将磁盘格式化，分配盘符为G，<br/><br/>SERVER B开机<br/>将新出现的分区按照SERVER A中的配置进行更改：分配盘符为G<br/>&nbsp;&nbsp;在SERVER A上配置集群：<br/>&nbsp;&nbsp;１． 在添加删除程序中添加并配置集群服务<br/>&nbsp;&nbsp;２． 在下面的向导中选择新建集群<br/>&nbsp;&nbsp;３． 输入集群名称SQL1<br/>&nbsp;&nbsp;注意&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br/>集群的名称不能和网上任何的主机名、域名冲突!用户可以用ADMINISTRATOR，但最好新建一个，以免日后修改密码而造成集群无法启动！<br/>&nbsp;&nbsp;４． 在随后的向导中选择心跳和公用的网卡<br/>&nbsp;&nbsp;５． 给集群指定IP地址：192.168.1.3<br/>&nbsp;&nbsp;６． 按照向导默认选项完成集群安装<br/>&nbsp;&nbsp;在SERVER B上配置集群：<br/>在添加删除程序中添加集群服务：<br/><br/>SERVER B中只要在第一步选择向集群中加入节点，然后找到SERVER A作好的集群就可以。<br/>&nbsp;&nbsp;安装结束后可以对集群切换进行测试：<br/>&nbsp;&nbsp;１． 在ServerA上打开集群管理器，<br/>&nbsp;&nbsp;２． 在SQL1组上点右键，选择切换组，<br/>&nbsp;&nbsp;３． 观察资源转移情况，经过几十秒时间，活动组会转移到ServerB上，<br/>&nbsp;&nbsp;４． 然后从ServerB上同样执行切换组，观察资源转换情况。<br/><br/>SQL Server for cluster安装<br/><br/><br/>安装前准备：<br/>1、必须先安装cluster后才安装SQL Server。<br/>2、只需要在两个节点中的任意一个节点上安装SQL Server即可。<br/>3、必须安装操作系统补丁。<br/><br/>安装并配置SQL Server 2000<br/><br/>1. 在Server A上执行安装，在初始画面上选择SQL Server 2000组件.<br/>2. 选择 安装数据库<br/>3. 在随后的窗口中中选择Virtual Server输入SQLSERVER的名称：SQLcluster<br/>4. 接受软件许可协议，<br/>5. 在随后的 FailovEr ClustEring 界面, 选择PUBLIC，然后输入SQL Server的IP地址：192.168.1.4<br/>6. 在 ClustEr Disk Sel&#101;ction 界面,选择G盘然后继续.<br/>7. 然后按照默认的相关选项进行配置就可以，安装结束后在集群管理工具中核实一下SQL的相关资源已经出现在组中。<br/><br/>在集群管理工具中执行一下切换，看看SQL的资源能否顺利切换，测试集群能否顺利切换。]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.hot1.com.cn/article.asp?id=332" /> 
	  <id>http://www.hot1.com.cn/default.asp?id=332</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[广东高校各批次录取最低控制分数线公布]]></title>
	  <author>
		 <name>月亮太阳</name>
		 <uri>http://www.hot1.com.cn/</uri>
		 <email>webmaster@stdns.net</email>
	  </author>
	  <category term="" scheme="http://www.hot1.com.cn/default.asp?cateID=5" label="Diary" /> 
	  <updated>2008-06-27T14:08:20+08:00</updated>
	  <published>2008-06-27T14:08:20+08:00</published>
		  <summary type="html"><![CDATA[今天上午11点,广东省教育考试院公布了今年高考考生成绩和各科类具体分数线段等有关情况。今年我省普通高考文理科状元分别是广东省文科类状元潮阳实验中学郑润泽681分；省理科类状元是珠海一中赵蔼珊696分。这个也是全省化学类考试中的最高得分数。 成绩公布后，紧接着就要填报志愿。<br/><br/>2008年广东省普通高校招生各批次录取最低控制分数线如下：<br/><br/>一、第一批本科院校（含执行本批次最低控制分数线的提前批本科院校及外语专业）<br/><br/>文科类：总分570分；理科类：总分564分；体育类：文化科总分366分，体育术科84分；美术类：文化科总分330分，美术术科240分；音乐类文化科总分337分，音乐术科70分。<br/><br/>二、第二批本科院校<br/><br/>A线（含执行本批次最低控制分数线的提前批本科院校及外语专业）<br/><br/>文科类：总分524分；理科类：总分510分；体育类：文化科总分295分，体育术科80分；美术类：文化科总分282分，美术术科225分；音乐类文化科总分267分，音乐术科60分。<br/><br/>B线<br/><br/>文科类：总分494分；理科类：总分488分；体育类：文化科总分293分，体育术科80分；美术类：文化科总分265分，美术术科215分；音乐类：文化科总分265分，音乐术科59分。06-27 10:49:20<br/><br/>三、第三批本科院校<br/><br/>（一）A线（含执行本批次最低控制分数线的提前批本科院校及外语专业）<br/><br/>文科类：总分455分；理科类：总分477分；体育类：文化科总分265分，体育术科75分；美术类：文化科总分228分，美术术科203分；音乐类文化科总分233分，音乐术科50分。<br/><br/>B线<br/><br/>文科类：总分382分；理科类：总分364分；体育类：文化科总分250分，体育术科73分；美术类：文化科总分200分，美术术科175分；音乐类：文化科总分200分，音乐术科45分。<br/><br/>（二）第三批市属专科学校（含体育、美术、音乐）面本市招生的录取最低控制分数线，可由各市招生委员会根据本市院校招生计划及生源情况提出，并报省招生委员会审批。<br/><br/>四、高等院校招收中等职业学校毕业生的录取最低控制分数线：文化科总分250分，并取得广东省中等职业技术教育专业技能课程考试合格证书或军级以上证书。]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.hot1.com.cn/article.asp?id=331" /> 
	  <id>http://www.hot1.com.cn/default.asp?id=331</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[2008年全国各地区高考录取分数线排行]]></title>
	  <author>
		 <name>月亮太阳</name>
		 <uri>http://www.hot1.com.cn/</uri>
		 <email>webmaster@stdns.net</email>
	  </author>
	  <category term="" scheme="http://www.hot1.com.cn/default.asp?cateID=5" label="Diary" /> 
	  <updated>2008-06-25T11:29:09+08:00</updated>
	  <published>2008-06-25T11:29:09+08:00</published>
		  <summary type="html"><![CDATA[2008年全国各地区高考录取分数线排行<br/>　　<br/>　　省份&nbsp;&nbsp;一批&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;二批 2008年　　<br/>　　<br/>　　&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;文科&nbsp;&nbsp;理科&nbsp;&nbsp;&nbsp;&nbsp;文科&nbsp;&nbsp; 理科<br/>　　山东 584分 582分 567分 557分<br/>　　重庆 576分 544分 510分 488分&nbsp;&nbsp;<br/>　　贵州 566分 521分 503分 468分&nbsp;&nbsp;<br/>　　吉林 565分 569分 497分 493分&nbsp;&nbsp;<br/>　　甘肃 560分 558分 501分 507分&nbsp;&nbsp;<br/>　　浙江 550分 550分 516分 504分&nbsp;&nbsp;<br/>　　云南 550分 530分 510分 475分&nbsp;&nbsp;<br/>　　内蒙 543分 548分 502分 497分&nbsp;&nbsp;<br/>　　河北 537分 552分 503分 514分&nbsp;&nbsp;<br/>　　宁夏 532分 498分 488分 457分&nbsp;&nbsp;<br/>　　广西 528分 501分 470分 440分&nbsp;&nbsp;<br/>　　江西 520分 512分 487分 461分&nbsp;&nbsp;<br/>　　北J 515分 502分 472分 455分&nbsp;&nbsp;<br/>　　江苏 330分 330分 300分 300分&nbsp;&nbsp;]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.hot1.com.cn/article.asp?id=330" /> 
	  <id>http://www.hot1.com.cn/default.asp?id=330</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[2008年浙江高考各批次分数线揭晓 重点线550分]]></title>
	  <author>
		 <name>月亮太阳</name>
		 <uri>http://www.hot1.com.cn/</uri>
		 <email>webmaster@stdns.net</email>
	  </author>
	  <category term="" scheme="http://www.hot1.com.cn/default.asp?cateID=8" label="Nonsense" /> 
	  <updated>2008-06-24T08:41:00+08:00</updated>
	  <published>2008-06-24T08:41:00+08:00</published>
		  <summary type="html"><![CDATA[　　浙江省教育考试院发布了2008年普通高考成绩和高校招生各批次录取分数线，文科和理科的第一批次分数线均为550分，分别比去年降低了18分和3分。<br/><br/>　　其余各批次分数线也都低于去年水平。<br/><br/>　　今年，高考理科的五个批次分数线分别为550分、504分、442分、319分和304分；<br/><br/>　　高考文科的五个批次分数线分别为550分、516分、468分、370分和355分。<br/><br/>　　此外，艺术文科（除广电）的本科文化控制线为338分，专科与高职为270分；<br/><br/>　　艺术理科（除广电）的本科文化控制线为335分，专科与高职为240分；<br/><br/>　　广电艺术文科的本科文化控制线为432分，专科与高职为370分；<br/><br/>　　广电艺术理科的本科文化控制线为421分，专科与高职为374分；<br/><br/>　　普通体育类文科的文化控制分数线为399分，特招生文化控制分数线为339分；<br/><br/>　　普通体育类理科的文化控制分数线为366分，特招生文化控制分数线为306分。]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.hot1.com.cn/article.asp?id=329" /> 
	  <id>http://www.hot1.com.cn/default.asp?id=329</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[VC MFC写的一个自动拨号连线与断线的小程序]]></title>
	  <author>
		 <name>月亮太阳</name>
		 <uri>http://www.hot1.com.cn/</uri>
		 <email>webmaster@stdns.net</email>
	  </author>
	  <category term="" scheme="http://www.hot1.com.cn/default.asp?cateID=6" label="Resource" /> 
	  <updated>2008-06-21T00:47:13+08:00</updated>
	  <published>2008-06-21T00:47:13+08:00</published>
		  <summary type="html"><![CDATA[前两天朋友叫我帮助写一个能够自动拨号连线和断线的程序，网上有很多现成的，都是断线后马上自动连线；但朋友的要求是能够设置断线后间隔一段时间再连线，这样才能使IP重复的机率变小。没办法。。朋友叫到的不能不做。。打开vs2003。。花了1个小时包调试，简单的实现在了。。暂时命名为“拨号小精灵”。。哈。。放出来共享，有兴趣的朋友支持一下~~呵~~~<br/><br/><img src="http://www.hot1.com.cn/images/download.gif" alt="只允许会员下载" style="margin:0px 2px -4px 0px"/> 该文件只允许会员下载! <a href="http://www.hot1.com.cn/login.asp">登录</a> | <a href="http://www.hot1.com.cn/register.asp">注册</a><br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.hot1.com.cn/article.asp?id=328" /> 
	  <id>http://www.hot1.com.cn/default.asp?id=328</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[如何提高自己的编程水平]]></title>
	  <author>
		 <name>月亮太阳</name>
		 <uri>http://www.hot1.com.cn/</uri>
		 <email>webmaster@stdns.net</email>
	  </author>
	  <category term="" scheme="http://www.hot1.com.cn/default.asp?cateID=5" label="Diary" /> 
	  <updated>2008-06-21T00:37:27+08:00</updated>
	  <published>2008-06-21T00:37:27+08:00</published>
		  <summary type="html"><![CDATA[　　有成功的喜悦，也有失败的痛苦，但总不敢称自己是高手，因为和我心目中真正的高手们比起来，还差的太远。世界上并没有成为高手的捷径，但一些基本原则是可以遵循的。<br/><br/>　　1. 扎实的基础。<br/><br/>　　数据结构、离散数学、编译原理，这些是所有计算机科学的基础，如果不掌握他们，很难写出高水平的程序。据我的观察，学计算机专业的人比学其他专业的人更能写出高质量的软件。程序人人都会写，但当你发现写到一定程度很难再提高的时候，就应该想想是不是要回过头来学学这些最基本的理论。不要一开始就去学OOP，即使你再精通OOP，遇到一些基本算法的时候可能也会束手无策。<br/><br/>　　2. 丰富的想象力。<br/><br/>　　不要拘泥于固定的思维方式，遇到问题的时候要多想几种解决问题的方案，试试别人从没想过的方法。丰富的想象力是建立在丰富的知识的基础上，除计算机以外，多涉猎其他的学科，比如天文、物理、数学等等。另外，多看科幻电影也是一个很好的途径。<br/><br/>　　3. 最简单的是最好的。<br/><br/>　　这也许是所有科学都遵循的一条准则，如此复杂的质能互换原理在爱因斯坦眼里不过是一个简单得不能再简单的公式：E=mc2。简单的方法更容易被人理解，更容易实现，也更容易维护。遇到问题时要优先考虑最简单的方案，只有简单方案不能满足要求时再考虑复杂的方案。<br/><br/>　　4. 不钻牛角尖。<br/><br/>　　当你遇到障碍的时候，不妨暂时远离电脑，看看窗外的风景，听听轻音乐，和朋友聊聊天。当我遇到难题的时候会去玩游戏，而且是那种极暴力的打斗类游戏，当负责游戏的那部分大脑细胞极度亢奋的时候，负责编程的那部分大脑细胞就得到了充分的休息。当重新开始工作的时候，我会发现那些难题现在竟然可以迎刃而解。<br/><br/>　　5. 对答案的渴求。<br/><br/>　　人类自然科学的发展史就是一个渴求得到答案的过程，即使只能知道答案的一小部分也值得我们去付出。只要你坚定信念，一定要找到问题的答案，你才会付出精力去探索，即使最后没有得到答案，在过程中你也会学到很多东西。<br/><br/>　　6. 多与别人交流。<br/><br/>　　三人行必有我师，也许在一次和别人不经意的谈话中，就可以迸出灵感的火花。多上上网，看看别人对同一问题的看法，会给你很大的启发。<br/><br/>　　7. 良好的编程风格。<br/><br/>　　注意养成良好的习惯，代码的缩进编排，变量的命名规则要始终保持一致。大家都知道如何排除代码中错误，却往往忽视了对注释的排错。注释是程序的一个重要组成部分，它可以使你的代码更容易理解，而如果代码已经清楚地表达了你的思想，就不必再加注释了，如果注释和代码不一致，那就更加糟糕。<br/><br/>　　8. 韧性和毅力。<br/><br/>　　这也许是&#34;高手&#34;和一般程序员最大的区别。A good programming is 99% sweat and 1% coffee。高手们并不是天才，他们是在无数个日日夜夜中磨练出来的。成功能给我们带来无比的喜悦，但过程却是无比的枯燥乏味。你不妨做个测试，找个 10000以内的素数表，把它们全都抄下来，然后再检查三遍，如果能够不间断地完成这一工作，你就可以满足这一条。<br/><br/>　　这些是我这几年程序员生涯的一点体会，希望能够给大家有所帮助。]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.hot1.com.cn/article.asp?id=327" /> 
	  <id>http://www.hot1.com.cn/default.asp?id=327</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[2008年高考各地成绩公布时间及查分方式]]></title>
	  <author>
		 <name>月亮太阳</name>
		 <uri>http://www.hot1.com.cn/</uri>
		 <email>webmaster@stdns.net</email>
	  </author>
	  <category term="" scheme="http://www.hot1.com.cn/default.asp?cateID=5" label="Diary" /> 
	  <updated>2008-06-18T16:16:27+08:00</updated>
	  <published>2008-06-18T16:16:27+08:00</published>
		  <summary type="html"><![CDATA[<p>　　2008年大部分省市的高考各科考试已经结束，为方便考生及家长查询相关信息，特别搜集整理了08年高考各地成绩公布时间及查分方式以供参考。<br /><br /></p>
<p><font class="title12">　　由于各方面情况的不断调整与变化，所提供的所有考试信息仅供参考，敬请考生以权威部门公布的正式信息为准。</font></p>
<table width="580" cellspacing="1" cellpadding="3" border="0" bgcolor="#1cb3df" align="center">
    <tbody>
        <tr>
            <td width="10%" height="35" bgcolor="#f5f5f5">
            <div align="center"><strong>地区</strong></div>
            </td>
            <td width="20%" height="35" bgcolor="#f5f5f5">
            <div align="center"><strong>查分时间</strong></div>
            </td>
            <td width="60%" height="35" bgcolor="#f5f5f5">
            <div align="center"><strong>查分方式</strong></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>宁夏 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a href="http://edu.sina.com.cn/gaokao/2008-06-09/1121145567.shtml" target="_blank" class="akey">6月20日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">宁夏教育考试院信息网(<a class="akey" href="http://www.nxks.nx.edu.cn/" target="_blank">www.nxks.nx.edu.cn</a>)</div>
            </td>
        </tr>
        <tr>
            <td height="80" bgcolor="#ffffff" align="center">
            <div align="center"><strong>广西 </strong></div>
            </td>
            <td height="80" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-17/1748148561.shtml" target="_blank">6月25日左右</a></div>
            </td>
            <td height="80" bgcolor="#ffffff" align="left">
            <div align="left">招生考试院网站(<a class="akey" href="http://www.gxeea.cn/lstd/gkxx.htm" target="_blank">www.gxeea.cn/lstd/gkxx.htm</a>)；中国电信号码百事通：118114。收费标准：市话费。(注：114人工台暂不提供高考成绩查询)；小灵通短信：编辑GKFS准考证号+身份证后4位发送到10659200111。收费标准：免信息费<br />               </div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>吉林 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/zikao/2008-06-16/1140147991.shtml" target="_blank">6月23日16:30</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">高考成绩预计于6月23日16时30分向社会公布&hellip;&hellip;&gt;&gt;<a class="akey" href="http://edu.sina.com.cn/zikao/2008-06-16/1140147991.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>重庆 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a href="http://edu.sina.com.cn/gaokao/2008-06-03/1355143178.shtml" target="_blank" class="akey">6月23日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">重庆招考信息网(<a class="akey" href="http://www.cqzk.com.cn/" target="_blank">www.cqzk.com.cn</a>)<br />       重庆招生办公室(<a class="akey" href="http://www.cqzkb.gov.cn/" target="_blank">www.cqzkb.gov.cn</a>)</div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>甘肃 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a href="http://edu.sina.com.cn/gaokao/2008-06-10/1555146697.shtml" target="_blank" class="akey">6月23日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　 　高考生可以通过四种渠道得知高考成绩：一、高考成绩由省招办通过网络传送到各级招办，各县(市、区)招办以成绩单方式通知考生本人，成绩单上不仅有考生 各科成绩及总分，今年还首次在通知书上印有考生在全省的名次；二、在当地县级招办查询；三、可登录甘肃省高等学校招生办公室网站查询&hellip;&hellip;&gt;&gt;<a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-07/1114144816.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>浙江 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a href="http://edu.sina.com.cn/gaokao/2008-06-04/1156143419.shtml" target="_blank" class="akey">6月25日前</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">浙江教育考试院网站(<a class="akey" href="http://www.zjzs.net/" target="_blank">www.zjzs.net</a>)</div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>河北 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a href="http://blog.sina.com.cn/s/blog_48e1099201008v94.html" target="_blank" class="akey">6月22日左右</a> </div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　　主渠道仍是当地县(市、区)招办通知，考生还可以通过登录省考试院网站查询成绩(<a class="akey" href="http://www.hebeea.edu.cn/" target="_blank">www.hebeea.edu.cn</a>)。<br />       拨打准考证上的168信息台的查分电话</div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>北京 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-09/1104145561.shtml" target="_blank">6月23日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">考生可通过上网、拨打声讯电话和订制短信的方式查询高考成绩。同时，高考录取分数线也预计于当天划定&hellip;&hellip;&gt;&gt;<a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-09/1104145561.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>内蒙古 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-17/1422148419.shtml" target="_blank">6月23日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">一 是登录内蒙古招生考试信息网(www.nm.zsks.cn)免费查询。二是移动电话发送短信&ldquo;gkcf考生号&rdquo;至10628833获取高考成绩。三是自 动语音信息台查询，网通用户拨打16897788，电信用户拨打16817788，铁通用户拨打95105168，根据语音提示输入考生号即可查询考生成 绩。四是人工信息台查询，网通用户拨打1607788，通过和话务员交互来查询成绩&hellip;&hellip;&gt;&gt;<a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-17/1422148419.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>西藏</strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center">6月23日左右</div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　　拨打96833513查询拨打96833513查询；登录西藏教育考试院(<a class="akey" href="http://www.xzzsks.com.cn/" target="_blank">www.xzzsks.com.cn</a>)</div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>江西 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-10/1128146596.shtml" target="_blank">6月23日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">23日向社会公布高考成绩&hellip;&hellip;&gt;&gt;<a class="akey" href="http://edu.sina.com.cn/gaokao/http://edu.sina.com.cn/gaokao/2008-06-07/1009144744.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>四川 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a href="http://edu.sina.com.cn/gaokao/2008-05-06/0935137798.shtml" target="_blank" class="akey">6月28日前</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　　四川电信用户可拨打96789100、96181877，网通用户可拨打11688789，移动手机可拨打125902007。</div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>山东 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-05/1047143790.shtml" target="_blank">6月23日左右</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　　通过电话免费查询，号码16866；通过山东省教育招生考试院网站(<a class="akey" href="http://www.sdzk.gov.cn/" target="_blank">http://www.sdzk.gov.cn/</a>)免费查询。</div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>天津 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-13/0932147463.shtml" target="_blank">6月25日左右</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">通过168声讯查询：16893888、1603888；登录天津招考资讯网(<a class="akey" href="http://www.zhaokao.net/" target="_blank">http://www.zhaokao.net/</a>)</div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>江苏 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a href="http://edu.sina.com.cn/gaokao/2008-06-10/1154146631.shtml" target="_blank" class="akey">6月25日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　　网上查询：江苏招生网站(<a class="akey" href="http://www.jszs.net/" target="_blank">http://www.jszs.net/</a>)；声讯电话：高考查分电话16887799</div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>福建 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a href="http://edu.sina.com.cn/gaokao/2008-06-09/1819146252.shtml" target="_blank" class="akey">6月26日-28日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　　值得注意的是，今年我省高考考试成绩只通知考生本人，不公布、不查卷&hellip;&hellip;&gt;&gt;<a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-09/1819146252.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>安徽 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a href="http://edu.sina.com.cn/gaokao/2008-05-04/1024137560.shtml" target="_blank" class="akey">6月26日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　　省考试院将确定各批次录取控制分数线并通知考生成绩。6月28日考生可以查分查卷&hellip;&hellip;&gt;&gt;<a class="akey" href="http://edu.sina.com.cn/gaokao/2008-05-04/1024137560.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>新疆 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a href="http://edu.sina.com.cn/gaokao/2008-06-10/1452146675.shtml" target="_blank" class="akey">6月25日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">电话查分：16885666；新疆教育信息网(<a class="akey" href="http://www.xjedu.gov.cn/" target="_blank">www.xjedu.gov.cn</a>)</div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>黑龙江 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-17/1705148542.shtml" target="_blank">6月25日左右</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">①&ldquo;黑龙江招生考试信息港&rdquo;(www.lzk.hl.cn)<br /> ②&ldquo;黑龙江教育信息网&rdquo;(www.hlje.net)<br /> ③新华网黑龙江频道(www.hlj.xinhuanet.com)<br /> ④市话160人工台及16888888自动台<br /> ⑤各市、县招考办(同时下发考生高考成绩单)<br /> 6月27日左右陆续公布全省各批次最低录取线&hellip;&hellip;&gt;&gt;<a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-17/1705148542.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>贵州 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-03-11/1033127051.shtml" target="_blank">6月26日前</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">贵州招生考试中心(<a class="akey" href="http://www.gzszk.com/" target="_blank">www.gzszk.com</a>)</div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>湖北 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-09/1430145708.shtml" target="_blank">6月25日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　　省教育考试院公布了今年高考的评卷方案，评卷工作于今天正式开始，6月25日向各地发放考生成绩单&hellip;&hellip;&gt;&gt;<a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-09/1430145708.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>青海 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-09/1054145558.shtml" target="_blank">6月26日前</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">青海招考信息网(<a class="akey" href="http://www.qhzk.com/" target="_blank">www.qhzk.com</a>)</div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>河南 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-10/1616146709.shtml" target="_blank">6月26日零时</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　　考生可通过四种渠道查询&mdash;&mdash;一是登录河南省教育厅网站(<a href="http://www.hadoe.gov.cn/" target="_blank" class="akey">www.hadoe.gov.cn</a>)、河南省招生办公室网站(<a href="http://www.heao.gov.cn/" target="_blank" class="akey">www.heao.gov.cn</a>)、河南招生考试信息网(<a href="http://www.heao.com.cn/" target="_blank" class="akey">www.heao.com.cn</a>)，免费查询&hellip;&hellip;&gt;&gt;<a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-10/1616146709.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>山西 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-01/1829142670.shtml" target="_blank">6月26日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　　分数查询16897799；录取查询16897899；录取分数线查询16897897&hellip;&hellip;&gt;&gt;<a class="akey" href="http://news.sina.com.cn/c/2008-06-03/062513962435s.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>陕西</strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-13/1420147635.shtml" target="_blank">6月26日左右</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">陕西招生考试信息网(<a class="akey" href="http://www.sneac.edu.cn/" target="_blank">www.sneac.edu.cn</a>)&hellip;&hellip;&gt;&gt;<a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-13/1420147635.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>海南 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-10/1046146557.shtml" target="_blank">6月26日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">登录海南省考试局网站(<a class="akey" href="http://ea.hainan.gov.cn/" target="_blank">http://ea.hainan.gov.cn/</a>)</div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>辽宁 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-09/1419145658.shtml" target="_blank">6月27日零时</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　　考生可在6月20日登录www.lnzsks.com(辽宁招生考试之窗)查询高考成绩查分方法。成绩公布时间为6月27日零时。考生于6月28日上午到毕业学校领取高考成绩通知单(社会考生到报考的区市县招生办领取)&hellip;&hellip;&gt;&gt;<a href="http://edu.sina.com.cn/gaokao/2008-06-09/1419145658.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>广东 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a href="http://edu.sina.com.cn/gaokao/2008-06-10/1052146570.shtml" target="_blank" class="akey">6月27日前后</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　　6月27日前省教育考试院召开高考录取会议，公布录取最低录取分数线&hellip;&hellip;&gt;&gt;<a class="akey" href="http://news.sina.com.cn/c/2008-06-03/062513962435s.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>云南 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-09/1521145767.shtml" target="_blank">6月25日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">云南招生考试信息网(<a class="akey" href="http://www.ynzs.cn/" target="_blank">www.ynzs.cn</a>)&hellip;&hellip;&gt;&gt;<a href="http://edu.sina.com.cn/gaokao/2008-06-09/1521145767.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>湖南 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-05-07/1649138132.shtml">6月26-27日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">　　考生查分：6月28日-30日考生凭《准考证》和《成绩通知单》到县(市)、区招考办办理申请查分手续，7月4日反馈查分结果&hellip;&hellip;&gt;&gt;<a class="akey" href="http://edu.sina.com.cn/gaokao/2008-05-07/1649138132.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
        <tr>
            <td height="22" bgcolor="#ffffff" align="center">
            <div align="center"><strong>上海 </strong></div>
            </td>
            <td height="22" bgcolor="#ffffff">
            <div align="center"><a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-10/1658146755.shtml" target="_blank">6月28日</a></div>
            </td>
            <td height="22" bgcolor="#ffffff" align="left">
            <div align="left">上海市教育考试院主办的&ldquo;上海招考热线(<a class="akey" href="http://www.shmeea.com.cn/" target="_blank">www.shmeea.com.cn</a>)&rdquo;和东方网将为考生提供网上免费查询高考成绩服务&hellip;&hellip;&gt;&gt;<a class="akey" href="http://edu.sina.com.cn/gaokao/2008-06-10/1658146755.shtml" target="_blank">详细</a></div>
            </td>
        </tr>
    </tbody>
</table>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.hot1.com.cn/article.asp?id=326" /> 
	  <id>http://www.hot1.com.cn/default.asp?id=326</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[抗震求灾中， 温总理最感人的10句话]]></title>
	  <author>
		 <name>月亮太阳</name>
		 <uri>http://www.hot1.com.cn/</uri>
		 <email>webmaster@stdns.net</email>
	  </author>
	  <category term="" scheme="http://www.hot1.com.cn/default.asp?cateID=5" label="Diary" /> 
	  <updated>2008-05-15T14:14:17+08:00</updated>
	  <published>2008-05-15T14:14:17+08:00</published>
		  <summary type="html"><![CDATA[川中地震，举国同悲，但我们很快就抹掉眼泪，踏上抢救同胞的征途。灾难降临后，年过花甲的温总理抢在了随时可能爆发危险的抗灾前线，和子弟兵们并肩作战。漫长的两天过去了，我们搜集了温总理在救灾前线说过的一些经典话语。从这些话语中，可以感受到总理对灾区的深切心痛和对13亿同胞的巨大信心：万里长城震不倒，只要双手在，我们可以把灾区建得更好！<br/><br/>1、总理和赶往灾区的登机部队领导讲话：“我就一句话，是人民在养你们，你们自己看着办！”这时候，他不仅是一位威严的共和国领导，更是一位面临危难的父亲！<br/><br/>2、“我不管你们怎么样，我只要这10万群众脱险，这是命令”。总理在电话里大喊，说完摔了电话。随行人员说，头一次看到老爷子这么厉害。在抢救现场，年过花甲的温总理，已然哭得不成样子，要知道，1942年出生的他，已经66周岁，比绝大部分前线救灾的人都要年老。<br/><br/>3、“第一还是救人，救人的重点是重灾区，地震中心区，联系不到的地区”。在环境险恶的抢救现场，两鬓苍苍劳累无眠的老爷子一不小心摔倒了，手臂受伤出血，却把要给他包扎的医务人员一把推开。<br/><br/>4、我们就尽百倍努力，绝不会放松。废墟下哪怕还有一个人，我们都要抢救到底。<br/><br/>5、“现在第一位的工作是抓紧时间救人，多争取一分一秒的时间就可能多抢救出一个被困者。”而让我们感到气愤的是，竟然有一些丧尽天良的人，在这种危难时刻，借救灾骗钱，九泉之下，他们何颜面对死去的同胞！<br/><br/>6、在灾区抢救现场，老爷子向受困的<a href="http://www.i3baby.cn" target="_blank">孩子</a>们喊话：“我是温爷爷，<a href="http://www.i3baby.cn" target="_blank">孩子</a>们一定要挺住，一定会得救! ”而灾区的<a href="http://www.i3baby.cn" target="_blank">孩子</a>们也是无比勇敢的，一位左手骨折的小<a href="http://www.i3baby.cn" target="_blank">孩子</a>，躺在担架上，忍着浑身的剧痛，微笑着向救灾的战士们敬了个礼！<br/><br/>7、看到广场上摆放的遇难群众遗体，温家宝心情十分沉重，他说：“我给遗体三鞠躬。” <br/><br/>8、“房子裂了、塌了，我们还可以再修。只要人在，我们就一定能够渡过难关，战胜这场重大自然灾害。只要双手在，我们就可以建得更好。” 温总理说得没错，只要人在，只要心在，我们会做得更好！<br/><br/>9、老爷子对被安置在绵阳九州体育馆的孤儿说：别哭，政府会管你们的！管你们生活，管你们的学习，要好好地活下去！<br/><br/>10、“我们要第一步救人，要不断努力把他们救出来，不惜采取任何手段，不惜任何代价！部队指战员排除一切困难，就是步行也要前往受灾最严重的地区。”现在一线的军人已经被下达死命令，必须冒雨解救，前线空降兵是写了遗书再上去的。而截止到目前为止，救援人员已经救出伤员64725名！！希望他们加油抢救，数万官兵已经20小时未进食！却仍在用血肉之手刨救受灾的同胞！<br/><br/>灾难只是暂时的，有这样的好总理，有数万英勇的子弟兵，有13亿坚定、坚韧的人民，我们一定会战胜困难，创造奇迹！ ]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.hot1.com.cn/article.asp?id=325" /> 
	  <id>http://www.hot1.com.cn/default.asp?id=325</id>
  </entry>	
		
</feed>
