<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/flyingstarwb" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/flyingstarwb" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 25 Jun 2009 14:29:00 GMT</lastBuildDate><title>小兵的专栏</title><description>海阔凭鱼跃，天高任鸟飞</description><link>http://blog.csdn.net/flyingstarwb/</link><item><title>Const常量真的不能改变了么？</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/06/25/4297630.aspx</link><wfw:comment>http://blog.csdn.net/flyingstarwb/comments/4297630.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyingstarwb/comments/commentRss/4297630.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4297630</trackback:ping><description>&lt;br /&gt;Const常量真的不能改变了么？&lt;br /&gt;&lt;br /&gt;在介绍const用法的时候，老师们都说&quot;由const修饰的变量的数值是不能修改的&quot;, 不过世间的事总不是那么绝对的！下面就介绍几种修改const变量的方法！&lt;br /&gt;我们声明一个const类型的变量，可以用如下代码：&lt;br /&gt;const int a = 2;&lt;br /&gt;直接对a进行赋值是不行的，如果我们一定要想改变a的值怎么办？在C，C++中指针真是个好东西，它可以为我们巧妙的解决很多问题。我们使用指针用如下代码即可达到修改a值的目的！&lt;br /&gt;const int a = 10;&lt;br /&gt;int *p  = (int*)&amp;a;&lt;br /&gt;*p = 20;&lt;br /&gt;cout &lt;br /&gt;如果是常量指针呢？&lt;br /&gt;    int array[10]={0};&lt;br /&gt;    const int *pointer=array;&lt;br /&gt;    int *pointer1=(int*)pointer;&lt;br /&gt;    pointer1[0]=1;&lt;br /&gt;    cout &lt;img src =&quot;http://blog.csdn.net/flyingstarwb/aggbug/4297630.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/237048647/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/06/25/4297630.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/flyingstarwb/237048647/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/flyingstarwb/237048647/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 25 Jun 2009 22:29:00 +0800</pubDate><author>王兵</author><comments>http://blog.csdn.net/flyingstarwb/archive/2009/06/25/4297630.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/06/25/4297630.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/06/25/4297630.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/237048647/1191696</fs:itemid></item><item><title>C语言实现交换两个数</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/06/24/4295987.aspx</link><wfw:comment>http://blog.csdn.net/flyingstarwb/comments/4295987.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyingstarwb/comments/commentRss/4295987.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4295987</trackback:ping><description>C语言中要实现交换两个变量的值可以有很多种方法，下面是我收集的方法&lt;img src =&quot;http://blog.csdn.net/flyingstarwb/aggbug/4295987.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236755931/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/06/24/4295987.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/flyingstarwb/236755931/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/flyingstarwb/236755931/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 25 Jun 2009 06:18:00 +0800</pubDate><author>王兵</author><comments>http://blog.csdn.net/flyingstarwb/archive/2009/06/24/4295987.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/06/24/4295987.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/06/24/4295987.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/236755931/1191696</fs:itemid></item><item><title>基准测试程序</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225913.aspx</link><wfw:comment>http://blog.csdn.net/flyingstarwb/comments/4225913.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyingstarwb/comments/commentRss/4225913.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4225913</trackback:ping><description>基准测试程序
&lt;img src =&quot;http://blog.csdn.net/flyingstarwb/aggbug/4225913.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236755932/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225913.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/flyingstarwb/236755932/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/flyingstarwb/236755932/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 30 May 2009 22:48:00 +0800</pubDate><author>王兵</author><comments>http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225913.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225913.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225913.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/236755932/1191696</fs:itemid></item><item><title>Fibonacci数列 算法</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225834.aspx</link><wfw:comment>http://blog.csdn.net/flyingstarwb/comments/4225834.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyingstarwb/comments/commentRss/4225834.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4225834</trackback:ping><description>Fibonacci数列 算法&lt;img src =&quot;http://blog.csdn.net/flyingstarwb/aggbug/4225834.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236755933/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225834.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/flyingstarwb/236755933/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/flyingstarwb/236755933/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 30 May 2009 22:04:00 +0800</pubDate><author>王兵</author><comments>http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225834.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225834.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225834.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/236755933/1191696</fs:itemid></item><item><title>svn目录结构组成的教程</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209798.aspx</link><wfw:comment>http://blog.csdn.net/flyingstarwb/comments/4209798.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyingstarwb/comments/commentRss/4209798.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4209798</trackback:ping><description>&lt;br /&gt;svn目录结构组成的教程  &lt;br /&gt;wolfwebadmin &lt;br /&gt;├─ProjectManagement&lt;br /&gt;│ ├─trunk&lt;br /&gt;│ ├─branches&lt;br /&gt;│ └─tags&lt;br /&gt;└─SSO&lt;br /&gt;├─trunk&lt;br /&gt;├─branches&lt;br /&gt;└─tags &lt;br /&gt;大概的说一下, ProjectManagement和SSO是两个项目 trunk是开发的主线代码, 存放能够运行的正确的代码; 程序员如果开发新的程序或者改bug, 一般要先branch(SVN的一个功能) trunk目录下的代码到branches目录的一个子目录,在那里对代码进行修改, 确认无误后再提交到trunk主线下(但是有的时候为了效率, 我们也多人都在trunk目录下开发项目). tags目录可以看做主线代码的快照, 比如你做了1.0又做了2.0, 那每个不同版本的代码你就做快照放到tags文件夹下了.&lt;br /&gt;一下文字转自http://rocksun.cn/svn/?p=43 Subversion版本库布局 很多人问我”什么是推荐的版本库&lt;img src =&quot;http://blog.csdn.net/flyingstarwb/aggbug/4209798.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236755934/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209798.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/flyingstarwb/236755934/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/flyingstarwb/236755934/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 23 May 2009 06:22:00 +0800</pubDate><author>王兵</author><comments>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209798.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209798.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209798.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/236755934/1191696</fs:itemid></item><item><title>svn使用简单教程</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209793.aspx</link><wfw:comment>http://blog.csdn.net/flyingstarwb/comments/4209793.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyingstarwb/comments/commentRss/4209793.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4209793</trackback:ping><description>&lt;br /&gt;svn使用简单教程(http://blog.csdn.net/adcxf/archive/2008/09/21/2957878.aspx)&lt;br /&gt;你是否正在参与团队合作项目？&lt;br /&gt;你是否遇到过这样的情况：当你正在修改一个文件，却出现另一个人作了同样的事情。你是否曾因为这种巧合而导致了你的修改付之东流？&lt;br /&gt;你是否曾经在文件保存之后，又想恢复到文件保存之前？你是否想过要去查看一个文件几天前的内容？&lt;br /&gt;当你发现一个项目中的bug，你是否想知道它是何时出现在你的代码中？&lt;br /&gt;如果你对上面任何一个问题回答“Yes”，那么TortoiseSVN就是你所需要的！你得仔细阅读TortoiseSVN的说明，学会如何解决上面的问题。这并不难～&lt;br /&gt;这份说明是写给那些希望使用Subversion去管理他们的资料，却又不习惯于命令行的操作的人。因为TortoiseSVN就像是一个windows的扩展外壳，用户可以像使用“我的电脑”那样使用这个软件。&lt;br /&gt;TortoiseSVN是自由软件，你不需要花钱就可以使用它，并且可以随意使用。它的开发遵循GPL协议。&lt;img src =&quot;http://blog.csdn.net/flyingstarwb/aggbug/4209793.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236755935/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209793.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/flyingstarwb/236755935/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/flyingstarwb/236755935/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 23 May 2009 06:18:00 +0800</pubDate><author>王兵</author><comments>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209793.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209793.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209793.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/236755935/1191696</fs:itemid></item><item><title>常用网站(不断更新中)</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209514.aspx</link><wfw:comment>http://blog.csdn.net/flyingstarwb/comments/4209514.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyingstarwb/comments/commentRss/4209514.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4209514</trackback:ping><description>开源社区类：http://sourceforge.net                   http://www.codeproject.com  windows上的开源程序下载软件开发论坛：http://www.csdn.net                     http://www.itpub.netLinux学习类：http://www.chinaunix.net网络安全类：网界（http://www.cnw.com.cn）&lt;img src =&quot;http://blog.csdn.net/flyingstarwb/aggbug/4209514.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236755936/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209514.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/flyingstarwb/236755936/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/flyingstarwb/236755936/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 23 May 2009 03:07:00 +0800</pubDate><author>王兵</author><comments>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209514.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209514.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209514.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/236755936/1191696</fs:itemid></item><item><title>CPL文件(转)</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/16/4191762.aspx</link><wfw:comment>http://blog.csdn.net/flyingstarwb/comments/4191762.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyingstarwb/comments/commentRss/4191762.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4191762</trackback:ping><description>CPL文件就是控制面板中各个控件。&lt;img src =&quot;http://blog.csdn.net/flyingstarwb/aggbug/4191762.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236755937/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/05/16/4191762.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/flyingstarwb/236755937/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/flyingstarwb/236755937/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 16 May 2009 19:04:00 +0800</pubDate><author>王兵</author><comments>http://blog.csdn.net/flyingstarwb/archive/2009/05/16/4191762.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/16/4191762.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/16/4191762.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/236755937/1191696</fs:itemid></item><item><title>IIS中Web应用程序和WebServices自动调用Application_End函数</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/05/4151168.aspx</link><wfw:comment>http://blog.csdn.net/flyingstarwb/comments/4151168.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyingstarwb/comments/commentRss/4151168.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4151168</trackback:ping><description>在IIS6.0下，配置一个Web 应用程序，或是Web 服务的时候，如果不指定特定的应用程序池，则使用默认的应用程序池：DefaultAppPool，而默认情况下，DefaultAppPool设置成为20分钟没有响应则执行释放应用程序实例，执行Gloabl.axax中Application_End中的操作，当下一个请求到来的时候，再执行Application_Start的操作，如果用户希望能一直保持应用程序实例的话，则需要在选择相应的应用程序池进行设置，取消这个限制。最近在项目中使用WebServices来实现任务调度的接口，为了实现任务任务的定时调度，我们在Application_Start中定义了一个Quartz.NET的一个调度对象，并对他进行初始化，没调用一个相应的web服务函数，就添加一个对应的job到该框架中，等待调度。我们在Application_End函数中对该调度对象进行了资源销毁工作。在测试过程中，我们发现，当停止调用Web服务后20-30分钟后系统自动调用Application_End函数，所以造成很多对应的job都不能正常调度，经过baidu,goo&lt;img src =&quot;http://blog.csdn.net/flyingstarwb/aggbug/4151168.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/flyingstarwb/236755938/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/flyingstarwb/236755938/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 05 May 2009 20:51:00 +0800</pubDate><author>王兵</author><comments>http://blog.csdn.net/flyingstarwb/archive/2009/05/05/4151168.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/05/4151168.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/05/4151168.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/236755938/1191696</fs:itemid></item><item><title>OEM和ODM的区别</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/05/4151140.aspx</link><wfw:comment>http://blog.csdn.net/flyingstarwb/comments/4151140.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyingstarwb/comments/commentRss/4151140.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4151140</trackback:ping><description>&lt;br /&gt;OEM一词在电脑硬件产品中简直实在是太普遍了，像OEM光驱、OEM显示器、OEM鼠标什么的。有些人甚至以为它是一个有质量保证的品牌。那么，你对OEM又有多少认识呢？说一件产品是OEM产品是否就代表信得过呢？&lt;br /&gt;　　其实，OEM与现代工业社会有着密切的关系。一些著名的品牌商品制造商，常常因为自己的厂房不能达到大批量生产的要求，又或者需要某些特定的零件，因此向其他厂商求助。 &lt;br /&gt;这些伸出援手的厂商就被称为OEM(Original Equipment Manufacturer，原始设备生产商)。如将之引申到IT领域的话，则表示那些进行代工的生产商。例如CPU风扇，Intel或AMD公司本身并不生产，它们通常会找像日本三洋公司这样的专业电机制造企业作风扇OEM生产。&lt;br /&gt;　　ODM又是怎么一回事呢？原来，某制造商设计出一种产品后，在某些情况下可能会被另外一些品牌的制造商看中，要求配上后者的品牌名称来进行生产，又或者稍微修改一些设计(如按键位置)来生产。这样做的最大好处是其他厂商减少了自己研制的时间。有些人也习惯性称这些产品是OEM，实际上应该称之为ODM(Or&lt;img src =&quot;http://blog.csdn.net/flyingstarwb/aggbug/4151140.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/flyingstarwb/236755939/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/flyingstarwb/236755939/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 05 May 2009 20:44:00 +0800</pubDate><author>王兵</author><comments>http://blog.csdn.net/flyingstarwb/archive/2009/05/05/4151140.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/05/4151140.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/05/4151140.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/236755939/1191696</fs:itemid></item></channel></rss>