<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_欢迎来到助燃的Blog！</title><subtitle type="text">对你有益的氧气，或者……对你有害的氯气</subtitle><id>http://feed.cnblogs.com/blog/u/23831/rss</id><updated>2010-09-01T07:12:38Z</updated><author><name>助燃</name><uri>http://www.cnblogs.com/doraeimo/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/doraeimo/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/23831/rss"/><entry><id>http://www.cnblogs.com/doraeimo/archive/2010/08/21/1805421.html</id><title type="text">解决：鼠标滚轮快速向上滚动会使网页后退</title><summary type="text">[症状]鼠标滚轮快速向上滚动，网页后退。更换浏览器问题依旧，于是排除浏览器设置问题。在资源管理器里用同样手法试验，发现其快速后退后又前进，类似于刷新了一次。怀疑是操作系统设置问题，检查控制面板中滚轮设置项，无异样。查google，大多数回答为鼠标短路、需要更换鼠标。[解决办法]查看ps2口发现应该插鼠标的ps2口插着键盘，而鼠标通过usb/ps2转接口连入电脑。交换后问题解决。之前键盘倒是一直无异...</summary><published>2010-08-21T09:05:00Z</published><updated>2010-08-21T09:05:00Z</updated><author><name>助燃</name><uri>http://www.cnblogs.com/doraeimo/</uri></author><link rel="alternate" href="http://www.cnblogs.com/doraeimo/archive/2010/08/21/1805421.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/doraeimo/archive/2010/08/21/1805421.html"/><content type="html">&lt;p&gt;[症状]&lt;/p&gt;&lt;p&gt;鼠标滚轮快速向上滚动，网页后退。更换浏览器问题依旧，于是排除浏览器设置问题。在资源管理器里用同样手法试验，发现其快速后退后又前进，类似于刷新了一次。&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;怀疑是操作系统设置问题，检查控制面板中滚轮设置项，无异样。&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;查google，大多数回答为鼠标短路、需要更换鼠标。&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;[解决办法]&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;查看ps2口发现应该插鼠标的ps2口插着键盘，而鼠标通过usb/ps2转接口连入电脑。交换后问题解决。之前键盘倒是一直无异常，故障原因相当隐蔽阿。&lt;/p&gt;&lt;img src="http://www.cnblogs.com/doraeimo/aggbug/1805421.html?type=1" width="1" height="1" alt=""/&gt;&lt;p&gt;&lt;a href="http://www.cnblogs.com/doraeimo/archive/2010/08/21/1805421.html" target="_blank"&gt;本文链接&lt;/a&gt;&lt;/p&gt;</content></entry><entry><id>http://www.cnblogs.com/doraeimo/archive/2009/04/16/1436974.html</id><title type="text">mysql limit 用法详解（修正版）</title><summary type="text">在google中输入"mysql limit"，得到的前两条记录内容是雷同的，其中有这样一段“//为了检索从某一个偏移量到记录集的结束所有的记录行，可以指定第二个参数为-1：mysql&gt;SELECT*FROMtableLIMIT95,-1;//检索记录行96-last. ”这段其实是在误人子弟，来看看mysql的官方文档：http://dev.mysql.com/do...</summary><published>2009-04-16T01:57:00Z</published><updated>2009-04-16T01:57:00Z</updated><author><name>助燃</name><uri>http://www.cnblogs.com/doraeimo/</uri></author><link rel="alternate" href="http://www.cnblogs.com/doraeimo/archive/2009/04/16/1436974.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/doraeimo/archive/2009/04/16/1436974.html"/><content type="text">在google中输入"mysql limit"，得到的前两条记录内容是雷同的，其中有这样一段“//为了检索从某一个偏移量到记录集的结束所有的记录行，可以指定第二个参数为-1：mysql&gt;SELECT*FROMtableLIMIT95,-1;//检索记录行96-last. ”这段其实是在误人子弟，来看看mysql的官方文档：http://dev.mysql.com/do...</content></entry><entry><id>http://www.cnblogs.com/doraeimo/archive/2008/07/25/1250945.html</id><title type="text">为Access模拟compute by分类汇总功能</title><summary type="text">最近用Access数据库做一个微型应用，需要实现类似SQL Server里compute by语法的效果，网上google了一下，得知jet不支持，只好自己用.net模拟一个了，暂时只支持根据一个字段sum另一个字段，即sum(fieldA) compute by (filedB)。注意fieldA必须是decimal类型，如果是double类型恐怕需要修改源代码。[代码]</summary><published>2008-07-24T17:06:00Z</published><updated>2008-07-24T17:06:00Z</updated><author><name>助燃</name><uri>http://www.cnblogs.com/doraeimo/</uri></author><link rel="alternate" href="http://www.cnblogs.com/doraeimo/archive/2008/07/25/1250945.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/doraeimo/archive/2008/07/25/1250945.html"/><content type="text">最近用Access数据库做一个微型应用，需要实现类似SQL Server里compute by语法的效果，网上google了一下，得知jet不支持，只好自己用.net模拟一个了，暂时只支持根据一个字段sum另一个字段，即sum(fieldA) compute by (filedB)。注意fieldA必须是decimal类型，如果是double类型恐怕需要修改源代码。[代码]</content></entry><entry><id>http://www.cnblogs.com/doraeimo/archive/2007/09/06/884482.html</id><title type="text">让Validation Callout Extender与Custom Validator协作</title><summary type="text">官方的说明中提到ValidatorCalloutExtender并不支持CustomValidator的服务器端验证，而我又迫切需要这个功能，于是使用google大法，找到了这篇名为《Validating Server Side using the Validation Callout Extender with the Custom Validator》 的文章，它提到了可以通过让Page类实现...</summary><published>2007-09-06T07:48:00Z</published><updated>2007-09-06T07:48:00Z</updated><author><name>助燃</name><uri>http://www.cnblogs.com/doraeimo/</uri></author><link rel="alternate" href="http://www.cnblogs.com/doraeimo/archive/2007/09/06/884482.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/doraeimo/archive/2007/09/06/884482.html"/><content type="text">官方的说明中提到ValidatorCalloutExtender并不支持CustomValidator的服务器端验证，而我又迫切需要这个功能，于是使用google大法，找到了这篇名为《Validating Server Side using the Validation Callout Extender with the Custom Validator》 的文章，它提到了可以通过让Page类实现...</content></entry><entry><id>http://www.cnblogs.com/doraeimo/archive/2007/08/11/852189.html</id><title type="text">在vs2008为asp.net ajax添加js智能感知</title><summary type="text">今天找了好久，终于搞清楚了，scriptManager控件支持js智能感知，而从其继承的toolkitScriptManager不支持。至少在vs2008b2中是这样。要在js文件中添加asp.net ajax的js智能感知（与scriptManager控件无关），在js文件的开头添加这样一行即可：///&lt;referencename="MicrosoftAjax.js"/&gt;若要在asp...</summary><published>2007-08-11T15:44:00Z</published><updated>2007-08-11T15:44:00Z</updated><author><name>助燃</name><uri>http://www.cnblogs.com/doraeimo/</uri></author><link rel="alternate" href="http://www.cnblogs.com/doraeimo/archive/2007/08/11/852189.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/doraeimo/archive/2007/08/11/852189.html"/><content type="text">今天找了好久，终于搞清楚了，scriptManager控件支持js智能感知，而从其继承的toolkitScriptManager不支持。至少在vs2008b2中是这样。要在js文件中添加asp.net ajax的js智能感知（与scriptManager控件无关），在js文件的开头添加这样一行即可：///&lt;referencename="MicrosoftAjax.js"/&gt;若要在asp...</content></entry><entry><id>http://www.cnblogs.com/doraeimo/archive/2007/07/24/829997.html</id><title type="text">如何修正CalendarExtender在updatePanel中发生错位的问题</title><summary type="text">最近用到了CalendarExtender，结果不知道为什么发生了错位，如图在Google和百度上找了很久，中文的文章里面似乎只提到了如何本地化（就是显示中文的月份）以及怎么解决被下拉框挡住的问题，谈到格式错位的好像没有，我最后在官方论坛上找到一篇文章，解决了这个问题，就在这儿贴一下～应该也算是个bug吧，可能在0618之后的版本会有补丁。解决的方法是在调用CalendarExtender的页面所...</summary><published>2007-07-24T13:52:00Z</published><updated>2007-07-24T13:52:00Z</updated><author><name>助燃</name><uri>http://www.cnblogs.com/doraeimo/</uri></author><link rel="alternate" href="http://www.cnblogs.com/doraeimo/archive/2007/07/24/829997.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/doraeimo/archive/2007/07/24/829997.html"/><content type="text">最近用到了CalendarExtender，结果不知道为什么发生了错位，如图在Google和百度上找了很久，中文的文章里面似乎只提到了如何本地化（就是显示中文的月份）以及怎么解决被下拉框挡住的问题，谈到格式错位的好像没有，我最后在官方论坛上找到一篇文章，解决了这个问题，就在这儿贴一下～应该也算是个bug吧，可能在0618之后的版本会有补丁。解决的方法是在调用CalendarExtender的页面所...</content></entry><entry><id>http://www.cnblogs.com/doraeimo/archive/2007/07/21/826639.html</id><title type="text">在asp.net中使用符合xhtml规范的spliter控件</title><summary type="text">之前为了使用spliter而尝试了dojo，有一个很严重的问题，其对xhtml规范支持得不好，使用时必须去掉xhtml的声明，这样一来，某些ms ajax control toolkit将无法正常使用。为了寻求更好的方法，我一直没有放弃，最近终于找到了这样一个spliter控件，它能支持xhtml，并且使用起来也很方便，接下来介绍其使用方法。我的布局是经典的左侧treeview，右侧gridvie...</summary><published>2007-07-21T08:10:00Z</published><updated>2007-07-21T08:10:00Z</updated><author><name>助燃</name><uri>http://www.cnblogs.com/doraeimo/</uri></author><link rel="alternate" href="http://www.cnblogs.com/doraeimo/archive/2007/07/21/826639.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/doraeimo/archive/2007/07/21/826639.html"/><content type="text">之前为了使用spliter而尝试了dojo，有一个很严重的问题，其对xhtml规范支持得不好，使用时必须去掉xhtml的声明，这样一来，某些ms ajax control toolkit将无法正常使用。为了寻求更好的方法，我一直没有放弃，最近终于找到了这样一个spliter控件，它能支持xhtml，并且使用起来也很方便，接下来介绍其使用方法。我的布局是经典的左侧treeview，右侧gridvie...</content></entry><entry><id>http://www.cnblogs.com/doraeimo/archive/2007/01/30/634071.html</id><title type="text">在Asp.net中使用dojo的splitContainer控件</title><summary type="text">在vs2005为winForm编程，有splitContainer控件可以用；可webForm可就没有这么个东西了。去问了赵老师，他说“试试dojo的splitContainer”，于是我查了N多资料捣鼓了1天终于搞定了，下面来总结一下这次收获的经验。效果图：如何使用dojo中的某个控件 去官方网站下载最新版本的dojo，我用的是0.4.1的。 将其解压缩后放在项目所在目录...</summary><published>2007-01-29T17:45:00Z</published><updated>2007-01-29T17:45:00Z</updated><author><name>助燃</name><uri>http://www.cnblogs.com/doraeimo/</uri></author><link rel="alternate" href="http://www.cnblogs.com/doraeimo/archive/2007/01/30/634071.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/doraeimo/archive/2007/01/30/634071.html"/><content type="text">在vs2005为winForm编程，有splitContainer控件可以用；可webForm可就没有这么个东西了。去问了赵老师，他说“试试dojo的splitContainer”，于是我查了N多资料捣鼓了1天终于搞定了，下面来总结一下这次收获的经验。效果图：如何使用dojo中的某个控件 去官方网站下载最新版本的dojo，我用的是0.4.1的。 将其解压缩后放在项目所在目录...</content></entry><entry><id>http://www.cnblogs.com/doraeimo/archive/2007/01/01/609344.html</id><title type="text">为gridview“删除”列添加确认对话框</title><summary type="text">如何为gridview控件里的“删除”列添加一个确认对话框？网上众说纷纭，大致见到了三种解决方案，现归纳如下：1、继承Web.IO里的button控件，为其实现一个IPostback的接口用于回调，具体代码之复杂，只有作者自己想体会吧……2、在gridview的RowDataBound事件中，遍历所有子控件，若属于LinkButton类，且Comma...</summary><published>2006-12-31T16:47:00Z</published><updated>2006-12-31T16:47:00Z</updated><author><name>助燃</name><uri>http://www.cnblogs.com/doraeimo/</uri></author><link rel="alternate" href="http://www.cnblogs.com/doraeimo/archive/2007/01/01/609344.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/doraeimo/archive/2007/01/01/609344.html"/><content type="text">如何为gridview控件里的“删除”列添加一个确认对话框？网上众说纷纭，大致见到了三种解决方案，现归纳如下：1、继承Web.IO里的button控件，为其实现一个IPostback的接口用于回调，具体代码之复杂，只有作者自己想体会吧……2、在gridview的RowDataBound事件中，遍历所有子控件，若属于LinkButton类，且Comma...</content></entry><entry><id>http://www.cnblogs.com/doraeimo/archive/2006/12/31/609306.html</id><title type="text">告别06，喜迎07</title><summary type="text">终于在cnblogs里安了个窝，本来已经有两处窝了，不过看上了这儿贴代码的功能，所以就赶在06年的最后一刻搬进来，当作是给自己的新年礼物吧以前两处住所贴了代码浏览器解析起来就不正常了但愿新的一年里，我能在这儿不断提升.net平台上的功力，记录下学习过程中的点点滴滴与各位分享。</summary><published>2006-12-31T15:37:00Z</published><updated>2006-12-31T15:37:00Z</updated><author><name>助燃</name><uri>http://www.cnblogs.com/doraeimo/</uri></author><link rel="alternate" href="http://www.cnblogs.com/doraeimo/archive/2006/12/31/609306.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/doraeimo/archive/2006/12/31/609306.html"/><content type="text">终于在cnblogs里安了个窝，本来已经有两处窝了，不过看上了这儿贴代码的功能，所以就赶在06年的最后一刻搬进来，当作是给自己的新年礼物吧以前两处住所贴了代码浏览器解析起来就不正常了但愿新的一年里，我能在这儿不断提升.net平台上的功力，记录下学习过程中的点点滴滴与各位分享。</content></entry></feed>
