<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_xBlues</title><subtitle type="text">My simple life in Shanghai</subtitle><id>http://feed.cnblogs.com/blog/u/3063/rss</id><updated>2008-08-21T08:53:19Z</updated><author><name>Blues</name><uri>http://www.cnblogs.com/xblues/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xblues/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/3063/rss"/><entry><id>http://www.cnblogs.com/xblues/archive/2008/08/21/1273362.html</id><title type="text">讨论用LINQ如何查重以及用纵横表显示数据</title><summary type="text">问题和要求如下：有数据表如下： ID Owner Resource OrderID Quotation 1 Jack China 363 45 2 Jack China 363 45 3 Mike Japan 678 23 4 Mike Japan 678 23 5 Mike Japan 678 23 6 John China 893 12 7 John Korea 453 11 8 Mike C...</summary><published>2008-08-21T08:53:00Z</published><updated>2008-08-21T08:53:00Z</updated><author><name>Blues</name><uri>http://www.cnblogs.com/xblues/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xblues/archive/2008/08/21/1273362.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xblues/archive/2008/08/21/1273362.html"/></entry><entry><id>http://www.cnblogs.com/xblues/archive/2008/08/01/1258311.html</id><title type="text">LINQ迸发访问错误提示：DataReader associated with this Command which must be closed first</title><summary type="text">我有一个应用是采用LINQ生成的DBML写的，同时执行两种操作的时候出现迸发错误。操作一：读表操作二：写表（时间较长的操作，大约持续1分钟） 在web.config中增加下面的参数可以消除这种错误。MultipleActiveResultSets=true"我照这样做了，写表的同时，读表不出错了。可是写表的操作却开始一直报错，看来还是没有解决问题。还有一种解释，我注意到我的代码的写法，可能是这里出错了，为了不是每次表操作都去建立一个新的DBDataContext实例，我就统一建立了一个静态实力，看上面的说法，这样不行。看来需要给每一个操作定义一个单独的实例。这样子不行：  public static MyDBDataContext db = new myDBDataContext(); 那看来得每个操作页面定义一个对象实例，操作完成以后再关掉，你有什么好的办法么？</summary><published>2008-08-01T08:38:00Z</published><updated>2008-08-01T08:38:00Z</updated><author><name>Blues</name><uri>http://www.cnblogs.com/xblues/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xblues/archive/2008/08/01/1258311.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xblues/archive/2008/08/01/1258311.html"/></entry><entry><id>http://www.cnblogs.com/xblues/archive/2008/07/31/1257160.html</id><title type="text">如何在ASP.NET应用中集成Windows域帐户来进行权限控制</title><summary type="text">如何在ASP.NET应用中集成Windows域帐户来进行权限控制企业应用程序采用域用户来代替独立的用户管理模块的好处很多。 程序本身不需要单独编写用户帐号管理模块 与域用户集成，用户不需要单独记忆用户名口令，可以实现无缝登录 采用域用户方案安全性提升，认证时口令不在网上传输，域用户安全级别 其他好处多多 首先需要配置IIS：为你的应用单独建立一个web虚拟目录，右键选择属性里的目录安全，权限与访问...</summary><published>2008-07-31T04:03:00Z</published><updated>2008-07-31T04:03:00Z</updated><author><name>Blues</name><uri>http://www.cnblogs.com/xblues/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xblues/archive/2008/07/31/1257160.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xblues/archive/2008/07/31/1257160.html"/></entry><entry><id>http://www.cnblogs.com/xblues/archive/2008/07/23/1249150.html</id><title type="text">如何使用ExtJs为表格单元格增加Tooltips(QuickTips)浮动信息</title><summary type="text">ExtJs证实了其十分强大的界面定制能力，其中的提供的ToolTips功能比HTML里的如下语句定制性更强，完全可以代替如下功能&amp;lt;a href="http://dfdfd" title="TIPS"&amp;gt;Some Text&amp;lt;/a&amp;gt; ExtJs是通过Ext.ToolTip和Ext.QuickTips两个组件来实现浮动提示功能的，其中Ext.ToolTip的定制功能很强，具体效果可...</summary><published>2008-07-22T20:54:00Z</published><updated>2008-07-22T20:54:00Z</updated><author><name>Blues</name><uri>http://www.cnblogs.com/xblues/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xblues/archive/2008/07/23/1249150.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xblues/archive/2008/07/23/1249150.html"/></entry><entry><id>http://www.cnblogs.com/xblues/archive/2008/07/11/1240843.html</id><title type="text">MSDN上发现了一篇很好的WCF入门教程</title><summary type="text">看了园子里很多学习WCF的例子，感觉受益匪浅，但是由于每个人学习的侧重点不同，一些很详细的细节例如每一个属性都是用来干什么的，建立不同的项目类型对创建的服务有什么区别等等，都不得而知。终于，在MSDN上发现了一篇入门教程。讲解的十分基本，十分详细，想进到每一个细节，然我彻底了解入门的每一个细节，整个教程结构清晰，代码简洁，讲解细致，值得推荐。每一个细节都包含在两个Program.cs文件中了，你大概看一下就会懂。比院子里大多数教材说得都清晰，特别适合像我一样爱刨根问底的初学者。:)</summary><published>2008-07-11T07:48:00Z</published><updated>2008-07-11T07:48:00Z</updated><author><name>Blues</name><uri>http://www.cnblogs.com/xblues/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xblues/archive/2008/07/11/1240843.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xblues/archive/2008/07/11/1240843.html"/></entry><entry><id>http://www.cnblogs.com/xblues/archive/2008/07/07/1237493.html</id><title type="text">FileHelper 一个极好的数据文本文件处理类库</title><summary type="text">我经常接触到一些csv格式存储的数据文件，把这些文件导入数据库，或者把数据库的数据导出成为excel文件或者csv文件。自己写功能解析自然好，但是需要处理的地方太多，如果是标准文件还好，但是如果文本文件里含有保留分隔符，或者数据格式有一些小错误，都需要自己处理。而且如果数据格式变化了，每次还要修改自己的代码。所以，我一直没写这个代码。偷懒，一直用Excel的Text to Data 功能凑合，或者用SQL的导入导出功能，再就是用从网页上拷贝粘贴数据到excel，然后清除格式的方法。这些方法其实都有弊端，典型的就是大量的手工才做，重复劳动，这些到还能忍受了，当涉及到数据库，用的最多的自然就是SQL自带的导入导出功能。这个功能大体上好用，可是如果文本文件里面有一点错误，他就罢工。这倒还可以忍受，后来我在64位机器上装了64位的SQL，这样微软居然不支持直接由Excel 导入，说64位版本不需要这个功能，我在网上看到了许多类似需求，微软都坚持说不提供这个64位的flat文件驱动！一等就是3年，SQL2005年发布，现在已经2008年了。可怕。终于看到了这个阿根廷人编写的开源文本文件导入导出帮</summary><published>2008-07-07T06:41:00Z</published><updated>2008-07-07T06:41:00Z</updated><author><name>Blues</name><uri>http://www.cnblogs.com/xblues/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xblues/archive/2008/07/07/1237493.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xblues/archive/2008/07/07/1237493.html"/></entry><entry><id>http://www.cnblogs.com/xblues/archive/2008/07/04/1235826.html</id><title type="text">好久没写了</title><summary type="text">回来看看，一会接着写！</summary><published>2008-07-04T09:06:00Z</published><updated>2008-07-04T09:06:00Z</updated><author><name>Blues</name><uri>http://www.cnblogs.com/xblues/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xblues/archive/2008/07/04/1235826.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xblues/archive/2008/07/04/1235826.html"/></entry><entry><id>http://www.cnblogs.com/xblues/archive/2006/07/11/448158.html</id><title type="text">招聘 .net 程序员</title><summary type="text">招聘 .net 程序员工作地点：上海工作性质：兼职（独立开发，但是为方便联系，人需要在上海，具体工作地点和时间不限）开发周期：1-2个月报酬总额：1万元人民币技术要求：有实际采用VS2005进行基于ASP.NET 2.0开发的经验，对分层结构有较深理解。项目要求：主要功能模块不复杂，重点是框架设计，程序采用分层设计，容易扩展功能，考虑项目今后扩展的要求，DAL层考虑基于ADO.NET 2.0类库的...</summary><published>2006-07-11T09:13:00Z</published><updated>2006-07-11T09:13:00Z</updated><author><name>Blues</name><uri>http://www.cnblogs.com/xblues/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xblues/archive/2006/07/11/448158.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xblues/archive/2006/07/11/448158.html"/></entry><entry><id>http://www.cnblogs.com/xblues/archive/2004/06/23/17972.html</id><title type="text">American Top 40</title><summary type="text">American Top 40 with Ryan Seacrest以前总是犯愁怎么找到最流行的歌曲，去过了好多地方，都感觉不太好，偶尔在FM887听到了这个节目，感觉主持人那么专业，真的比887的主持人高出一截，而和英语主持人比较起来就更加专业了，我第一个感觉就是这一定是一个引进节目，没想到被我猜中了，这个可是当今美国最火的FM节目，而排行榜也绝对具有代表性，可惜离开了北京，无法收听这个节目了，...</summary><published>2004-06-23T01:17:00Z</published><updated>2004-06-23T01:17:00Z</updated><author><name>Blues</name><uri>http://www.cnblogs.com/xblues/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xblues/archive/2004/06/23/17972.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xblues/archive/2004/06/23/17972.html"/></entry><entry><id>http://www.cnblogs.com/xblues/archive/2004/06/21/17421.html</id><title type="text">第一个帖子吧，我也博客了！</title><summary type="text">嗯，早就打算编写自己的网络程序，不过，不急于动手，先看看时下流行的东西吧，写程序和买东西一样，我的套路是先转遍全市场，再作决定。</summary><published>2004-06-21T01:10:00Z</published><updated>2004-06-21T01:10:00Z</updated><author><name>Blues</name><uri>http://www.cnblogs.com/xblues/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xblues/archive/2004/06/21/17421.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xblues/archive/2004/06/21/17421.html"/></entry></feed>
