<?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/zhnzzy" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/zhnzzy" type="application/rss+xml"></fs:self_link><lastBuildDate>Wed, 21 Jan 2009 10:54:00 GMT</lastBuildDate><title>zhnzzy的专栏</title><link>http://blog.csdn.net/zhnzzy/</link><item><title>学习笔记</title><link>http://blog.csdn.net/zhnzzy/archive/2009/01/21/3847246.aspx</link><wfw:comment>http://blog.csdn.net/zhnzzy/comments/3847246.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhnzzy/comments/commentRss/3847246.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3847246</trackback:ping><description>&lt;br /&gt;  为结构声明默认的构造函数是错误的，因为每一个值类型都隐式具有一个公共的默认构造函数。可以在结构类型上声明参数化构造函数以设置其初始值，但是，只有在需要默认值之外的值时才必须这样做。&lt;br /&gt; 值类型对象（例如结构）是在堆栈上创建的，而引用类型对象（例如类）是在堆上创建的。两种类型的对象都是自动销毁的，但是，基于值类型的对象是在超出范围时销毁，而基于引用类型的对象则是在对该对象的最后一个引用被移除之后在某个不确定的时间销毁。对于占用固定资源（例如大量内存、文件句柄或网络连接）的引用类型，有时需要使用确定性终止以确保对象被尽快销毁。&lt;img src =&quot;http://blog.csdn.net/zhnzzy/aggbug/3847246.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 21 Jan 2009 18:54:00 +0800</pubDate><author>ha</author><comments>http://blog.csdn.net/zhnzzy/archive/2009/01/21/3847246.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhnzzy/archive/2009/01/21/3847246.aspx</guid><dc:creator>ha</dc:creator></item><item><title>水晶报表如何按照分组的详细目录自动分页！</title><link>http://blog.csdn.net/zhnzzy/archive/2008/12/11/3499638.aspx</link><wfw:comment>http://blog.csdn.net/zhnzzy/comments/3499638.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhnzzy/comments/commentRss/3499638.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3499638</trackback:ping><description> 最近写的程序中需要实现这样一个功能，一条查询有N条记录，每条记录下又有M条子记录，现在要在报表上打印出这样的格式，为N条记录打印N张报表，即每条父目录自动分为1页，发现插入两个组的时候不太好使，不能自动分页！后来发现水晶报表自带有这样的功能，在格式化节－》节专家－》选择组页眉－》勾选上“在后面页新建页”，这时报表会自动按你分组的字段分页，但是这时候在最后一页是会重复的，即有N+1页会出现，这时我们需要选中;格式化节－》节专家－》b报表页脚－》把“隐藏”和“抑制显示”打上勾，这时在运行程序，打开报表，你会发现最后一页不见了，只有N页了.&lt;img src =&quot;http://blog.csdn.net/zhnzzy/aggbug/3499638.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 12 Dec 2008 01:27:00 +0800</pubDate><author>ha</author><comments>http://blog.csdn.net/zhnzzy/archive/2008/12/11/3499638.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhnzzy/archive/2008/12/11/3499638.aspx</guid><dc:creator>ha</dc:creator></item><item><title>实用的SQL函数(用于将符合条件的某列所有记录合成一行）</title><link>http://blog.csdn.net/zhnzzy/archive/2008/12/01/3421000.aspx</link><wfw:comment>http://blog.csdn.net/zhnzzy/comments/3421000.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhnzzy/comments/commentRss/3421000.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3421000</trackback:ping><description>&lt;br /&gt;当表中有　Ａ，Ｂ两列　情况如下&lt;br /&gt;Ａ　Ｂ&lt;br /&gt;－－－－&lt;br /&gt;Ｑ　Ｗ&lt;br /&gt;Ｑ　Ｍ&lt;br /&gt;Ｑ　Ｓ&lt;br /&gt;即A列对应多个Ｂ列，现在要返回　Ａ列值为Ｑ的Ｂ列为一条记录中间用空格隔开．即W M S&lt;br /&gt;&lt;br /&gt;下面函数可以搞定 &lt;br /&gt;&lt;br /&gt;CREATE FUNCTION dbo.getBbyA&lt;br /&gt;(&lt;br /&gt;  @C varchar (50)&lt;br /&gt;)&lt;br /&gt;RETURNS varchar (100)&lt;br /&gt;AS&lt;br /&gt;BEGIN&lt;br /&gt; DECLARE  @CODE VARCHAR(100)&lt;br /&gt; set @CODE=''&lt;br /&gt; SELECT @CODE=@CODE+B+'  '  from table where A=@C&lt;br /&gt; RETURN   @CODE&lt;br /&gt;&lt;br /&gt;END&lt;br /&gt;&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/zhnzzy/aggbug/3421000.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 01 Dec 2008 23:30:00 +0800</pubDate><author>ha</author><comments>http://blog.csdn.net/zhnzzy/archive/2008/12/01/3421000.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhnzzy/archive/2008/12/01/3421000.aspx</guid><dc:creator>ha</dc:creator></item><item><title>Service部署到服务器后出现&quot;The test form is only available for requests from the local machine&quot;解决方法</title><link>http://blog.csdn.net/zhnzzy/archive/2008/12/01/3420920.aspx</link><wfw:comment>http://blog.csdn.net/zhnzzy/comments/3420920.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhnzzy/comments/commentRss/3420920.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3420920</trackback:ping><description>最近边上一新同事刚写service,部署起来以后出现上述问题,想想肯定也有很多人碰到类似问题,一起来解决掉吧!原因:NET Framework 1.1 定义了一个名为 HttpPostLocalhost 的新协议。默认情况下，这个新协议处于启用状态。该协议允许从与使用 HTTP POST 请求的 Web 服务位于同一计算机上的应用程序调用该服务。允许的前提条件是：POST URL 使用 http://localhost，而不是 http://hostname。这使得 Web 服务开发人员可以使用基于 HTML 的测试窗体，从 Web 服务所在的同一计算机调用该 Web 服务。当您尝试从远程计算机访问 Web 服务时，不会显示“调用”按钮。并且，您会收到以下错误信息：The test form is only available for requests from the local machine解决方法: 1.通过编辑 Web 服务所在的 vroot 的 Web.config &lt;img src =&quot;http://blog.csdn.net/zhnzzy/aggbug/3420920.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 01 Dec 2008 23:22:00 +0800</pubDate><author>ha</author><comments>http://blog.csdn.net/zhnzzy/archive/2008/12/01/3420920.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhnzzy/archive/2008/12/01/3420920.aspx</guid><dc:creator>ha</dc:creator></item><item><title>欢迎访问我的sina博客!谢谢!http://blog.sina.com.cn/m/hanian</title><link>http://blog.csdn.net/zhnzzy/archive/2006/10/31/1358496.aspx</link><wfw:comment>http://blog.csdn.net/zhnzzy/comments/1358496.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhnzzy/comments/commentRss/1358496.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1358496</trackback:ping><description>blog at sina&lt;img src =&quot;http://blog.csdn.net/zhnzzy/aggbug/1358496.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 31 Oct 2006 22:27:00 +0800</pubDate><author>zhnzzy</author><comments>http://blog.csdn.net/zhnzzy/archive/2006/10/31/1358496.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhnzzy/archive/2006/10/31/1358496.aspx</guid><dc:creator>zhnzzy</dc:creator></item></channel></rss>