<?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/lixinchaoo" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/lixinchaoo" type="application/rss+xml"></fs:self_link><lastBuildDate>Wed, 10 Jun 2009 10:02:00 GMT</lastBuildDate><title>lixinchaoo的专栏</title><link>http://blog.csdn.net/lixinchaoo/</link><item><title>WNDCLASS结构介绍</title><link>http://blog.csdn.net/lixinchaoo/archive/2009/06/10/4256572.aspx</link><wfw:comment>http://blog.csdn.net/lixinchaoo/comments/4256572.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lixinchaoo/comments/commentRss/4256572.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4256572</trackback:ping><description>&lt;br /&gt;WNDCLASS结构包含了RegisterClass函数注册窗口类时的窗口类属性。&lt;br /&gt;这个结构在使用RegisterClassEx函数注册窗口类时被WNDCLASSEX结构所取代。如果不需为窗口类设置小图标时，仍然可以使用WNDCLASS和RegisterClass。&lt;br /&gt;语法：&lt;br /&gt;typedef struct {&lt;br /&gt;    UINT style;&lt;br /&gt;    WNDPROC lpfnWndProc;&lt;br /&gt;    int cbClsExtra;&lt;br /&gt;    int cbWndExtra;&lt;br /&gt;    HINSTANCE hInstance;&lt;br /&gt;    HICON hIcon;&lt;br /&gt;    HCURSOR hCursor;&lt;br /&gt;    HBRUSH hbrBackground;&lt;br /&gt;    LPCTSTR lpszMenuName;&lt;br /&gt;    LPCTSTR lpszClassName;&lt;br /&gt;} WNDCLASS, *pWNDCLASS;&lt;br /&gt;成员：&lt;br /&gt;style&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/lixinchaoo/aggbug/4256572.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236639557/lixinchaoo/csdn.net/s.gif?r=http://blog.csdn.net/lixinchaoo/archive/2009/06/10/4256572.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/lixinchaoo/236639557/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/lixinchaoo/236639557/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 10 Jun 2009 18:02:00 +0800</pubDate><author>李鑫超</author><comments>http://blog.csdn.net/lixinchaoo/archive/2009/06/10/4256572.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lixinchaoo/archive/2009/06/10/4256572.aspx</guid><dc:creator>李鑫超</dc:creator><fs:srclink>http://blog.csdn.net/lixinchaoo/archive/2009/06/10/4256572.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lixinchaoo/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/lixinchaoo/~7396864/236639557/5506384</fs:itemid></item><item><title>spring+hibernate避免延迟加载异常</title><link>http://blog.csdn.net/lixinchaoo/archive/2009/05/23/4210173.aspx</link><wfw:comment>http://blog.csdn.net/lixinchaoo/comments/4210173.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lixinchaoo/comments/commentRss/4210173.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4210173</trackback:ping><description>&lt;br /&gt;在hibernate中，延迟加载是1个非常大的优点，但有时候却给我们带来一些小麻烦，在后台查询结束后，session已经关闭，但在前台显示的时候，如果存在关联关系就会产生延迟加载异常。&lt;br /&gt;
解决办法是客户端每次请求就分配1个session,将请求结果返回给客户端，并完成展现后关闭session。&lt;br /&gt;
实现这个功能非常简单，在web.xml中加入以下配置hibernateFilter&lt;br /&gt;org.springframework.orm.hibernate3.support.OpenSessionInViewFilter &lt;br /&gt;&lt;br /&gt;singleSession&lt;br /&gt;true&lt;br /&gt;&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/lixinchaoo/aggbug/4210173.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236639558/lixinchaoo/csdn.net/s.gif?r=http://blog.csdn.net/lixinchaoo/archive/2009/05/23/4210173.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/lixinchaoo/236639558/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/lixinchaoo/236639558/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 23 May 2009 17:09:00 +0800</pubDate><author>李鑫超</author><comments>http://blog.csdn.net/lixinchaoo/archive/2009/05/23/4210173.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lixinchaoo/archive/2009/05/23/4210173.aspx</guid><dc:creator>李鑫超</dc:creator><fs:srclink>http://blog.csdn.net/lixinchaoo/archive/2009/05/23/4210173.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lixinchaoo/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/lixinchaoo/~7396864/236639558/5506384</fs:itemid></item><item><title>JDBC参数设置</title><link>http://blog.csdn.net/lixinchaoo/archive/2009/05/21/4206559.aspx</link><wfw:comment>http://blog.csdn.net/lixinchaoo/comments/4206559.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lixinchaoo/comments/commentRss/4206559.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4206559</trackback:ping><description>&lt;br /&gt;常用 JDBC 驱动名字和 URL 列表 &lt;br /&gt;&lt;br /&gt;ODBC  driver&lt;br /&gt;sun.jdbc.odbc.JdbcOdbcDriver&lt;br /&gt;jdbc:odbc:name &lt;br /&gt;&lt;br /&gt;用 COM.ibm.db2.jdbc.net.DB2Driver 连接到 DB2 数据库&lt;br /&gt;一个 DB2 URL 的示例:&lt;br /&gt;jdbc:db2://aServer.myCompany.com:50002/name &lt;br /&gt;&lt;br /&gt;用 com.sybase.jdbc.SybDriver连接到 Sybase 数据库&lt;br /&gt;一个 Sybase URL 的示例:&lt;br /&gt;jdbc:sybase:Tds:aServer.myCompany.com:2025 &lt;br /&gt;&lt;br /&gt;MySQL driver&lt;br /&gt;com.mysql.jdbc.Driver&lt;br /&gt;jdbc:mysql://hostname:3306/dbname?useUnicode=true&amp;characterEncoding=GBK &lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/lixinchaoo/aggbug/4206559.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236639559/lixinchaoo/csdn.net/s.gif?r=http://blog.csdn.net/lixinchaoo/archive/2009/05/21/4206559.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/lixinchaoo/236639559/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/lixinchaoo/236639559/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 21 May 2009 23:19:00 +0800</pubDate><author>李鑫超</author><comments>http://blog.csdn.net/lixinchaoo/archive/2009/05/21/4206559.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lixinchaoo/archive/2009/05/21/4206559.aspx</guid><dc:creator>李鑫超</dc:creator><fs:srclink>http://blog.csdn.net/lixinchaoo/archive/2009/05/21/4206559.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lixinchaoo/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/lixinchaoo/~7396864/236639559/5506384</fs:itemid></item><item><title>JBOSS 局域网不能访问,本机也无法通过局域网IP访问,只能用 localhost 或 127.0.0.1</title><link>http://blog.csdn.net/lixinchaoo/archive/2009/05/08/4159582.aspx</link><wfw:comment>http://blog.csdn.net/lixinchaoo/comments/4159582.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lixinchaoo/comments/commentRss/4159582.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4159582</trackback:ping><description>&lt;br /&gt;经测试,结果如下: &lt;br /&gt;&lt;br /&gt; JBoss 4.0.4.GA   可以 &lt;br /&gt; jboss-4.0.5.GA   不可以 &lt;br /&gt; jboss-4.2.2.GA   不可以 &lt;br /&gt; jboss-4.2.3.GA   不可以 &lt;br /&gt;----------------------------------------------------------------------------------------------------------&lt;br /&gt;jboss 4.2.2 只能localhost访问 不能通过ip访问解决办法 &lt;br /&gt;&lt;br /&gt; JBOSS版本：4.2GA &lt;br /&gt;&lt;br /&gt; 症状：服务器无法通过IP地址去访问，只能用127.0.0.1或者localhost来访问。 &lt;br /&gt;&lt;br /&gt; 解决办法： &lt;br /&gt; 启动JBOSS的时候输入：run -b xxx.xxx.xxx.xxx &lt;br /&gt; 其中xxx.xxx.xxx.xxx为本机的IP地址。 &lt;br /&gt;&lt;br /&gt; 原因： &lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/lixinchaoo/aggbug/4159582.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/lixinchaoo/236639560/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/lixinchaoo/236639560/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 08 May 2009 17:09:00 +0800</pubDate><author>李鑫超</author><comments>http://blog.csdn.net/lixinchaoo/archive/2009/05/08/4159582.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lixinchaoo/archive/2009/05/08/4159582.aspx</guid><dc:creator>李鑫超</dc:creator><fs:srclink>http://blog.csdn.net/lixinchaoo/archive/2009/05/08/4159582.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lixinchaoo/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/lixinchaoo/~7396864/236639560/5506384</fs:itemid></item><item><title>Java正则表达式入门</title><link>http://blog.csdn.net/lixinchaoo/archive/2009/05/06/4155139.aspx</link><wfw:comment>http://blog.csdn.net/lixinchaoo/comments/4155139.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lixinchaoo/comments/commentRss/4155139.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4155139</trackback:ping><description>&lt;br /&gt;众所周知，在程序开发中，难免会遇到需要匹配、查找、替换、判断字符串的情况发生，而这些情况有时又比较复杂，如果用纯编码方式解决，往往会浪费程序员的时间及精力。因此，学习及使用正则表达式，便成了解决这一矛盾的主要手段。&lt;br /&gt;
 大
家都知道，正则表达式是一种可以用于模式匹配和替换的规范，一个正则表达式就是由普通的字符（例如字符a到z）以及特殊字符（元字符）组成的文字模式，它
用以描述在查找文字主体时待匹配的一个或多个字符串。正则表达式作为一个模板，将某个字符模式与所搜索的字符串进行匹配。&lt;br /&gt;
  自从jdk1.4推出java.util.regex包，就为我们提供了很好的JAVA正则表达式应用平台。&lt;br /&gt;&lt;br /&gt;
 因为正则表达式是一个很庞杂的体系，所以我仅例举些入门的概念，更多的请参阅相关书籍及自行摸索。 &lt;br /&gt;&lt;br /&gt;
\\ 反斜杠&lt;br /&gt;
\t 间隔 ('\u0009')&lt;br /&gt;
\n 换行 ('\u000A')&lt;br /&gt;
\r 回车 ('\u000D')&lt;br /&gt;
\d 数字 等价于[0-9]&lt;img src =&quot;http://blog.csdn.net/lixinchaoo/aggbug/4155139.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/lixinchaoo/236639561/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/lixinchaoo/236639561/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 07 May 2009 00:37:00 +0800</pubDate><author>李鑫超</author><comments>http://blog.csdn.net/lixinchaoo/archive/2009/05/06/4155139.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lixinchaoo/archive/2009/05/06/4155139.aspx</guid><dc:creator>李鑫超</dc:creator><fs:srclink>http://blog.csdn.net/lixinchaoo/archive/2009/05/06/4155139.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lixinchaoo/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/lixinchaoo/~7396864/236639561/5506384</fs:itemid></item><item><title>2008年度最佳开源软件大奖</title><link>http://blog.csdn.net/lixinchaoo/archive/2009/04/27/4127672.aspx</link><wfw:comment>http://blog.csdn.net/lixinchaoo/comments/4127672.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lixinchaoo/comments/commentRss/4127672.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4127672</trackback:ping><description>&lt;br /&gt;InfoWorld历年的开源软件大奖都相当有分量，不过国内知道或者关注这个奖项的用户并不是特别多。InfoWorld 2008年的“开源软件大奖”最新出炉。&lt;br /&gt;&lt;br /&gt;协同类软件、开发工具&lt;br /&gt;一、collaboration|协同类软件&lt;br /&gt;InfoWorld评选的协同（collaboration）类软件主要包括社会化软件、BLOG系统、日程和邮件系统管理平台构建系统等软件，共5个产品入选。&lt;br /&gt;1. elgg：社会性网络构建平台&lt;br /&gt;elgg作为一个社会性网络构建平台，一经问世，即好评如潮，更有人将其与大名鼎鼎的moodle相提并论。这个平台不仅获得了2007年最佳社会性网络开源CMS平台的荣誉，在今年得到了info world的最高评价。点击这里下载elgg 。&lt;br /&gt;&lt;br /&gt;2. MediaWiki：Wiki应用构建平台&lt;br /&gt;说MediaWiki是最佳的Wiki应用构建平台，恐怕没有人会反对吧？风靡全球的Wikipedia已经可以充分证明MediaWiki的强大。点击这里下载MediaWiki 。&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/lixinchaoo/aggbug/4127672.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/lixinchaoo/236639562/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/lixinchaoo/236639562/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 27 Apr 2009 17:00:00 +0800</pubDate><author>李鑫超</author><comments>http://blog.csdn.net/lixinchaoo/archive/2009/04/27/4127672.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lixinchaoo/archive/2009/04/27/4127672.aspx</guid><dc:creator>李鑫超</dc:creator><fs:srclink>http://blog.csdn.net/lixinchaoo/archive/2009/04/27/4127672.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lixinchaoo/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/lixinchaoo/~7396864/236639562/5506384</fs:itemid></item><item><title>网站源码查看</title><link>http://blog.csdn.net/lixinchaoo/archive/2009/04/24/4107996.aspx</link><wfw:comment>http://blog.csdn.net/lixinchaoo/comments/4107996.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lixinchaoo/comments/commentRss/4107996.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4107996</trackback:ping><description>查看网站源码&lt;img src =&quot;http://blog.csdn.net/lixinchaoo/aggbug/4107996.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/lixinchaoo/236639563/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/lixinchaoo/236639563/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 25 Apr 2009 01:58:00 +0800</pubDate><author>李鑫超</author><comments>http://blog.csdn.net/lixinchaoo/archive/2009/04/24/4107996.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lixinchaoo/archive/2009/04/24/4107996.aspx</guid><dc:creator>李鑫超</dc:creator><fs:srclink>http://blog.csdn.net/lixinchaoo/archive/2009/04/24/4107996.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lixinchaoo/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/lixinchaoo/~7396864/236639563/5506384</fs:itemid></item><item><title>日期输入控件</title><link>http://blog.csdn.net/lixinchaoo/archive/2009/04/24/4107924.aspx</link><wfw:comment>http://blog.csdn.net/lixinchaoo/comments/4107924.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lixinchaoo/comments/commentRss/4107924.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4107924</trackback:ping><description>&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/lixinchaoo/aggbug/4107924.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/lixinchaoo/236639564/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/lixinchaoo/236639564/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 25 Apr 2009 01:41:00 +0800</pubDate><author>李鑫超</author><comments>http://blog.csdn.net/lixinchaoo/archive/2009/04/24/4107924.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lixinchaoo/archive/2009/04/24/4107924.aspx</guid><dc:creator>李鑫超</dc:creator><fs:srclink>http://blog.csdn.net/lixinchaoo/archive/2009/04/24/4107924.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lixinchaoo/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/lixinchaoo/~7396864/236639564/5506384</fs:itemid></item><item><title>在table中通过按钮添加一行或者删除一行</title><link>http://blog.csdn.net/lixinchaoo/archive/2009/04/21/4097359.aspx</link><wfw:comment>http://blog.csdn.net/lixinchaoo/comments/4097359.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lixinchaoo/comments/commentRss/4097359.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4097359</trackback:ping><description>在table中通过按钮添加一行或者删除一行的效果代码！&lt;img src =&quot;http://blog.csdn.net/lixinchaoo/aggbug/4097359.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/lixinchaoo/236639565/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/lixinchaoo/236639565/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 21 Apr 2009 21:51:00 +0800</pubDate><author>李鑫超</author><comments>http://blog.csdn.net/lixinchaoo/archive/2009/04/21/4097359.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lixinchaoo/archive/2009/04/21/4097359.aspx</guid><dc:creator>李鑫超</dc:creator><fs:srclink>http://blog.csdn.net/lixinchaoo/archive/2009/04/21/4097359.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lixinchaoo/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/lixinchaoo/~7396864/236639565/5506384</fs:itemid></item><item><title>System.Data.OracleClient 需要 Oracle 客户端软件 8.1.7 或更高版本</title><link>http://blog.csdn.net/lixinchaoo/archive/2009/04/19/4091596.aspx</link><wfw:comment>http://blog.csdn.net/lixinchaoo/comments/4091596.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lixinchaoo/comments/commentRss/4091596.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4091596</trackback:ping><description>问题
安装完ASP.NET,Oracle9i客户端后，使用System.Data.OracleClient访问Oracle数据库时收到如下信息
System.Data.OracleClient requires Oracle client software version 8.1.7 or greater.
&lt;img src =&quot;http://blog.csdn.net/lixinchaoo/aggbug/4091596.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/lixinchaoo/236639566/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/lixinchaoo/236639566/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 19 Apr 2009 20:01:00 +0800</pubDate><author>李鑫超</author><comments>http://blog.csdn.net/lixinchaoo/archive/2009/04/19/4091596.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lixinchaoo/archive/2009/04/19/4091596.aspx</guid><dc:creator>李鑫超</dc:creator><fs:srclink>http://blog.csdn.net/lixinchaoo/archive/2009/04/19/4091596.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/lixinchaoo/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/lixinchaoo/~7396864/236639566/5506384</fs:itemid></item></channel></rss>
