<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_Navicy's .NET</title><subtitle type="text">天将降大任于斯人也，必先苦其心智，劳其筋骨，饿其体肤，空乏其身......</subtitle><id>http://feed.cnblogs.com/blog/u/10662/rss</id><updated>2008-06-02T04:07:49Z</updated><author><name>Navicy</name><uri>http://www.cnblogs.com/navicy/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/navicy/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/10662/rss"/><entry><id>http://www.cnblogs.com/navicy/archive/2007/09/11/890044.html</id><title type="text">Dundas for Reporting Services的一些的使用技巧</title><summary type="text">如何让Chart的Y轴或2nd Y轴只显示最大值和最小值？原理很简单，就是设置Y轴的interval是此轴的最大值即可，但是interval是不支持Expression表达式来获取Y轴最大值的，那么就需要在Dundas中写Code来实现。在Dundas的属性设置窗口中选择Advanced，单击ViewCode按钮，在下拉列表中选择PostApplyData方法，C#实现代码如下：//Paramet...</summary><published>2007-09-11T10:11:00Z</published><updated>2007-09-11T10:11:00Z</updated><author><name>Navicy</name><uri>http://www.cnblogs.com/navicy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/navicy/archive/2007/09/11/890044.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/navicy/archive/2007/09/11/890044.html"/><content type="text">如何让Chart的Y轴或2nd Y轴只显示最大值和最小值？原理很简单，就是设置Y轴的interval是此轴的最大值即可，但是interval是不支持Expression表达式来获取Y轴最大值的，那么就需要在Dundas中写Code来实现。在Dundas的属性设置窗口中选择Advanced，单击ViewCode按钮，在下拉列表中选择PostApplyData方法，C#实现代码如下：//Paramet...</content></entry><entry><id>http://www.cnblogs.com/navicy/archive/2007/09/11/889964.html</id><title type="text">发现 SQL Server 2005 Reporting Services 的一些BUG</title><summary type="text">1. Float 参数的BUG当你在Report中设置某个参数类型是Float时产生此BUG，Reporting Service在显示Float参数时会出现莫名奇妙的四舍五入成两位小数，索性的是这种错误只停留在显示上，报表的内部运算仍旧按照参数的实际小数位数进行运算。解决方法是将Float 参数改为string类型，然后在用的时候将参数转换为小数。2.更新Report，其Linked Report...</summary><published>2007-09-11T09:16:00Z</published><updated>2007-09-11T09:16:00Z</updated><author><name>Navicy</name><uri>http://www.cnblogs.com/navicy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/navicy/archive/2007/09/11/889964.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/navicy/archive/2007/09/11/889964.html"/><content type="text">1. Float 参数的BUG当你在Report中设置某个参数类型是Float时产生此BUG，Reporting Service在显示Float参数时会出现莫名奇妙的四舍五入成两位小数，索性的是这种错误只停留在显示上，报表的内部运算仍旧按照参数的实际小数位数进行运算。解决方法是将Float 参数改为string类型，然后在用的时候将参数转换为小数。2.更新Report，其Linked Report...</content></entry><entry><id>http://www.cnblogs.com/navicy/archive/2007/09/07/885938.html</id><title type="text">博客更新</title><summary type="text">好久没有更新技术博客了。近期准备推出Microsoft SQL Server 2005 Reporting Service 和 Dundas for Reporting Service专栏，欢迎大家关注！</summary><published>2007-09-07T08:20:00Z</published><updated>2007-09-07T08:20:00Z</updated><author><name>Navicy</name><uri>http://www.cnblogs.com/navicy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/navicy/archive/2007/09/07/885938.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/navicy/archive/2007/09/07/885938.html"/><content type="text">好久没有更新技术博客了。近期准备推出Microsoft SQL Server 2005 Reporting Service 和 Dundas for Reporting Service专栏，欢迎大家关注！</content></entry><entry><id>http://www.cnblogs.com/navicy/archive/2007/04/17/717205.html</id><title type="text">基于UML和ASP.NET实现三层B/S结构学籍管理系统开发</title><summary type="text">架构设计是软件开发的基础，并往往决定一个项目的成败。三层结构是目前流行的架构设计模式，它是在由Buschmann等提出的“层模式”[1]基础上发展起来的，由表示层、业务逻辑层和数据访问层三个层次结构组成。它通过分解来管理问题的复杂性，同时还可以有效地重复使用业务逻辑并保留与昂贵资源（如数据库）的重要连接[2,3]。基于ASP.NET能够充分发挥其完全面向对象的技术特点，实...</summary><published>2007-04-17T11:04:00Z</published><updated>2007-04-17T11:04:00Z</updated><author><name>Navicy</name><uri>http://www.cnblogs.com/navicy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/navicy/archive/2007/04/17/717205.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/navicy/archive/2007/04/17/717205.html"/><content type="text">架构设计是软件开发的基础，并往往决定一个项目的成败。三层结构是目前流行的架构设计模式，它是在由Buschmann等提出的“层模式”[1]基础上发展起来的，由表示层、业务逻辑层和数据访问层三个层次结构组成。它通过分解来管理问题的复杂性，同时还可以有效地重复使用业务逻辑并保留与昂贵资源（如数据库）的重要连接[2,3]。基于ASP.NET能够充分发挥其完全面向对象的技术特点，实...</content></entry><entry><id>http://www.cnblogs.com/navicy/archive/2006/06/09/421507.html</id><title type="text">Windows的AutoRun.inf文件是近期木马、病毒传播的罪魁祸首</title><summary type="text"/><published>2006-06-09T04:03:00Z</published><updated>2006-06-09T04:03:00Z</updated><author><name>Navicy</name><uri>http://www.cnblogs.com/navicy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/navicy/archive/2006/06/09/421507.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/navicy/archive/2006/06/09/421507.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/navicy/archive/2006/05/15/400671.html</id><title type="text">Windows XP SP2的WRSF安全特性导致IE使用window.open和window.showModalDialog的status=no无法关闭状态栏</title><summary type="text"/><published>2006-05-15T09:10:00Z</published><updated>2006-05-15T09:10:00Z</updated><author><name>Navicy</name><uri>http://www.cnblogs.com/navicy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/navicy/archive/2006/05/15/400671.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/navicy/archive/2006/05/15/400671.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/navicy/archive/2006/04/18/378151.html</id><title type="text">“掌握Ajax”中文系列教程（转载自IBM DeveloperWorks网站）</title><summary type="text"/><published>2006-04-18T06:09:00Z</published><updated>2006-04-18T06:09:00Z</updated><author><name>Navicy</name><uri>http://www.cnblogs.com/navicy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/navicy/archive/2006/04/18/378151.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/navicy/archive/2006/04/18/378151.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/navicy/archive/2006/04/18/378089.html</id><title type="text">AJAX异步和回调</title><summary type="text"/><published>2006-04-18T05:24:00Z</published><updated>2006-04-18T05:24:00Z</updated><author><name>Navicy</name><uri>http://www.cnblogs.com/navicy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/navicy/archive/2006/04/18/378089.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/navicy/archive/2006/04/18/378089.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/navicy/archive/2006/04/18/378087.html</id><title type="text">AJAX和XmlHttpRequest下的WEB开发</title><summary type="text"/><published>2006-04-18T05:18:00Z</published><updated>2006-04-18T05:18:00Z</updated><author><name>Navicy</name><uri>http://www.cnblogs.com/navicy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/navicy/archive/2006/04/18/378087.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/navicy/archive/2006/04/18/378087.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/navicy/archive/2005/11/17/278830.html</id><title type="text">Google推出的照片管理软件Picasa</title><summary type="text"/><published>2005-11-17T09:47:00Z</published><updated>2005-11-17T09:47:00Z</updated><author><name>Navicy</name><uri>http://www.cnblogs.com/navicy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/navicy/archive/2005/11/17/278830.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/navicy/archive/2005/11/17/278830.html"/><content type="text"/></entry></feed>
