<?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/itzhiren" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/itzhiren" type="application/rss+xml"></fs:self_link><lastBuildDate>Wed, 29 Apr 2009 21:47:00 GMT</lastBuildDate><title>itzhiren的专栏</title><description>学习经验交流</description><link>http://blog.csdn.net/itzhiren/</link><item><title>html文件包含文件的几种方法</title><link>http://blog.csdn.net/itzhiren/archive/2009/04/29/4137912.aspx</link><wfw:comment>http://blog.csdn.net/itzhiren/comments/4137912.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/itzhiren/comments/commentRss/4137912.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4137912</trackback:ping><description>&lt;br /&gt;在asp页面中，我们常常使用include命令来包含公共文件，比如说页首、页尾的部分，使用公共文件非常方便，但在HTML页面里使用include根本就不起作用。这是因为，include是VBScript的命令，因此可以在asp页面里使用。而HTML静态页面被调用的时候并不经过asp解释器，而是直接发送到用户浏览器，因此include命令就无效了。&lt;br /&gt;对于信息量较大的网站，通常我们都选择使用静态页面，否则数据库查询太频繁，服务器压力太大。但是过多的页面里面，如果不能用调用的方式将公共内容包含进去，那么一旦修改起来就太可怕了。include最大的价值就是因重用而易于维护。怎样才能在静态页面里也实现include的功能呢？最简单的办法，就是做asp后缀的静态页面——内容是静态的，页面保存成asp后缀的，这种方式对搜索引擎没有什么影响，实际运算量也并不大（因为虽然经过asp解释器，但是实际上几乎没有运算量）。如果您一定要做HTM后缀的静态页，那么还有下面这些方法可供替代。&lt;br /&gt;1.IFrame &lt;br /&gt;这个大家都很熟悉了&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/itzhiren/aggbug/4137912.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 30 Apr 2009 05:47:00 +0800</pubDate><author>itzhiren</author><comments>http://blog.csdn.net/itzhiren/archive/2009/04/29/4137912.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/itzhiren/archive/2009/04/29/4137912.aspx</guid><dc:creator>itzhiren</dc:creator><fs:srclink>http://blog.csdn.net/itzhiren/archive/2009/04/29/4137912.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/itzhiren/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/itzhiren/~1143440/212786347/1143428</fs:itemid></item><item><title>服务器端控件使用客户端脚本</title><link>http://blog.csdn.net/itzhiren/archive/2008/04/24/2321749.aspx</link><wfw:comment>http://blog.csdn.net/itzhiren/comments/2321749.aspx</wfw:comment><slash:comments>2</slash:comments><wfw:commentRss>http://blog.csdn.net/itzhiren/comments/commentRss/2321749.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2321749</trackback:ping><description>&lt;br /&gt;我们做项目经常遇到一个服务器控件，既有服务器端的事件，又要结合客户端脚本，这里介绍几个好用的结合方式。&lt;br /&gt;比如，我们页面上有一个按钮Button1，我们要实现当用户点击这个按钮的时候，先跳出确认的对话框，“您确定要按吗？”（或者其他的提示信息，这里只是举例），如果用户点击了“取消”，则取消这个动作，如果点击了“确定”，则执行确定的动作，这里我们要输出“您按了按钮Button1”。&lt;br /&gt;一般的客户端脚本要结合服务器控件可以直接在服务器控件的标签内写即可。比如鼠标移动到按钮上，按钮的背景颜色改变成红色，只要这样写： &lt;br /&gt;&lt;br /&gt;但是如果要做到上面说的那个按钮的功能，所遇到的最大问题是OnClick事件已经被服务器端用掉了，如： &lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/itzhiren/aggbug/2321749.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 24 Apr 2008 18:27:00 +0800</pubDate><author>itzhiren</author><comments>http://blog.csdn.net/itzhiren/archive/2008/04/24/2321749.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/itzhiren/archive/2008/04/24/2321749.aspx</guid><dc:creator>itzhiren</dc:creator><fs:srclink>http://blog.csdn.net/itzhiren/archive/2008/04/24/2321749.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/itzhiren/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/itzhiren/~1143440/212786348/1143428</fs:itemid></item><item><title>photoshop中，怎样知道哪个图像在哪个层里面，这就告诉你</title><link>http://blog.csdn.net/itzhiren/archive/2008/04/17/2300636.aspx</link><wfw:comment>http://blog.csdn.net/itzhiren/comments/2300636.aspx</wfw:comment><slash:comments>3</slash:comments><wfw:commentRss>http://blog.csdn.net/itzhiren/comments/commentRss/2300636.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2300636</trackback:ping><description>记下来，可以给自己长点记性。美工不在，可累死我了&lt;img src =&quot;http://blog.csdn.net/itzhiren/aggbug/2300636.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 17 Apr 2008 21:48:00 +0800</pubDate><author>itzhiren</author><comments>http://blog.csdn.net/itzhiren/archive/2008/04/17/2300636.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/itzhiren/archive/2008/04/17/2300636.aspx</guid><dc:creator>itzhiren</dc:creator><fs:srclink>http://blog.csdn.net/itzhiren/archive/2008/04/17/2300636.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/itzhiren/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/itzhiren/~1143440/212786349/1143428</fs:itemid></item><item><title>GridView控件使用了visible=false之后，就取不到相应列的值了</title><link>http://blog.csdn.net/itzhiren/archive/2008/02/15/2097124.aspx</link><wfw:comment>http://blog.csdn.net/itzhiren/comments/2097124.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/itzhiren/comments/commentRss/2097124.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2097124</trackback:ping><description>解决问题的方法很简单，只要在GridView的RowDataBound事件中设置某几列的Visible为false就可以了&lt;img src =&quot;http://blog.csdn.net/itzhiren/aggbug/2097124.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 15 Feb 2008 22:46:00 +0800</pubDate><author>itzhiren</author><comments>http://blog.csdn.net/itzhiren/archive/2008/02/15/2097124.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/itzhiren/archive/2008/02/15/2097124.aspx</guid><dc:creator>itzhiren</dc:creator><fs:srclink>http://blog.csdn.net/itzhiren/archive/2008/02/15/2097124.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/itzhiren/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/itzhiren/~1143440/212786350/1143428</fs:itemid></item><item><title>生成html的几种方案</title><link>http://blog.csdn.net/itzhiren/archive/2008/01/22/2058517.aspx</link><wfw:comment>http://blog.csdn.net/itzhiren/comments/2058517.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/itzhiren/comments/commentRss/2058517.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2058517</trackback:ping><description>asp.net,生成html&lt;img src =&quot;http://blog.csdn.net/itzhiren/aggbug/2058517.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 22 Jan 2008 19:36:00 +0800</pubDate><author>itzhiren</author><comments>http://blog.csdn.net/itzhiren/archive/2008/01/22/2058517.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/itzhiren/archive/2008/01/22/2058517.aspx</guid><dc:creator>itzhiren</dc:creator><fs:srclink>http://blog.csdn.net/itzhiren/archive/2008/01/22/2058517.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/itzhiren/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/itzhiren/~1143440/212786351/1143428</fs:itemid></item><item><title>利用ASP实现事务处理的方法－转</title><link>http://blog.csdn.net/itzhiren/archive/2007/12/26/1967998.aspx</link><wfw:comment>http://blog.csdn.net/itzhiren/comments/1967998.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/itzhiren/comments/commentRss/1967998.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1967998</trackback:ping><description>在开发Web应用时，无一例外地需要访问数据库，以完成对数据的查询、插入、更新、删除等操作。受应用逻辑的影响，有时需要将多条数据库操作指令组成一个工作单元（事务）。在数据库中，所谓事务是指一组逻辑操作单元，它使数据从一种状态变换到另一种状态。 为确保数据库中数据的一致性，应当用离散的成组的逻辑单元操作数据：当它全部完成时，数据的一致性可以保持；而当单元中的一部分操作失败时，整个事务会被全部忽略，所有从起始点以后的操作全部退回到开始状态。 

    实际上，在默认方式下对数据库的每一次操作都是隐含的事务处理。本文以一个典型的用户注册程序为例，介绍三种利用ASP实现事务处理的方法：基于ASP数据库组件的解决方法、基于数据库内部的事务处理机制的解决方法和基于MTS组件的解决方法。 
 
    程序功能 
    在SQL Server数据库中建立两个表：USER表和USERDOC表。其中USER表中存放的是注册用户的用户名和密码，USERDOC表中存放的是该注册用户的个人资料，并且以用户名为索引。下面是表USER和USERDOC的定义： 
Create Table US&lt;img src =&quot;http://blog.csdn.net/itzhiren/aggbug/1967998.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 26 Dec 2007 21:57:00 +0800</pubDate><author>itzhiren</author><comments>http://blog.csdn.net/itzhiren/archive/2007/12/26/1967998.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/itzhiren/archive/2007/12/26/1967998.aspx</guid><dc:creator>itzhiren</dc:creator><fs:srclink>http://blog.csdn.net/itzhiren/archive/2007/12/26/1967998.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/itzhiren/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/itzhiren/~1143440/212786352/1143428</fs:itemid></item><item><title>ajax应用 系统错误:-1072896748</title><link>http://blog.csdn.net/itzhiren/archive/2007/12/26/1967908.aspx</link><wfw:comment>http://blog.csdn.net/itzhiren/comments/1967908.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/itzhiren/comments/commentRss/1967908.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1967908</trackback:ping><description>AJAX默认的是UTF-8编码，我的是GB2312，导致该错误
保持两边的字符集一致，最好使用UTF-8编码，因为XMLHTTPRequest对象默认用UTF-8传输
&lt;img src =&quot;http://blog.csdn.net/itzhiren/aggbug/1967908.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 26 Dec 2007 21:07:00 +0800</pubDate><author>itzhiren</author><comments>http://blog.csdn.net/itzhiren/archive/2007/12/26/1967908.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/itzhiren/archive/2007/12/26/1967908.aspx</guid><dc:creator>itzhiren</dc:creator><fs:srclink>http://blog.csdn.net/itzhiren/archive/2007/12/26/1967908.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/itzhiren/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/itzhiren/~1143440/212786353/1143428</fs:itemid></item><item><title>Visual Studio .NET 无法创建或打开应用程序。问题很可能是因为本地Web服务器上没有安装所需的组件。请运行 Visual Studio .NET 安装程序并添加Web开发组件。</title><link>http://blog.csdn.net/itzhiren/archive/2007/10/22/1837017.aspx</link><wfw:comment>http://blog.csdn.net/itzhiren/comments/1837017.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/itzhiren/comments/commentRss/1837017.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1837017</trackback:ping><description>Visual Studio .NET 无法创建或打开应用程序。问题很可能是因为本地Web服务器上没有安装所需的组件。请运行 Visual Studio .NET 安装程序并添加Web开发组件。－－－－－终于找到解决方法了！原来是文件中使用的.net版本号和机器中安装的版本号不一致引起的&lt;img src =&quot;http://blog.csdn.net/itzhiren/aggbug/1837017.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 22 Oct 2007 21:54:00 +0800</pubDate><author>itzhiren</author><comments>http://blog.csdn.net/itzhiren/archive/2007/10/22/1837017.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/itzhiren/archive/2007/10/22/1837017.aspx</guid><dc:creator>itzhiren</dc:creator><fs:srclink>http://blog.csdn.net/itzhiren/archive/2007/10/22/1837017.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/itzhiren/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/itzhiren/~1143440/212786354/1143428</fs:itemid></item><item><title>ListBox控件实现选项的上移、下移、左移、右移</title><link>http://blog.csdn.net/itzhiren/archive/2007/10/19/1833197.aspx</link><wfw:comment>http://blog.csdn.net/itzhiren/comments/1833197.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/itzhiren/comments/commentRss/1833197.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1833197</trackback:ping><description>ListBox控件实现选项的上移、下移、左移、右移&lt;img src =&quot;http://blog.csdn.net/itzhiren/aggbug/1833197.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 20 Oct 2007 01:28:00 +0800</pubDate><author>itzhiren</author><comments>http://blog.csdn.net/itzhiren/archive/2007/10/19/1833197.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/itzhiren/archive/2007/10/19/1833197.aspx</guid><dc:creator>itzhiren</dc:creator><fs:srclink>http://blog.csdn.net/itzhiren/archive/2007/10/19/1833197.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/itzhiren/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/itzhiren/~1143440/212786355/1143428</fs:itemid></item><item><title>ASP.NET中动态加载样式表</title><link>http://blog.csdn.net/itzhiren/archive/2007/10/19/1832725.aspx</link><wfw:comment>http://blog.csdn.net/itzhiren/comments/1832725.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/itzhiren/comments/commentRss/1832725.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1832725</trackback:ping><description>这里介绍几种常用的方法，都是在做项目的过程中累积的方法&lt;img src =&quot;http://blog.csdn.net/itzhiren/aggbug/1832725.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 19 Oct 2007 22:12:00 +0800</pubDate><author>itzhiren</author><comments>http://blog.csdn.net/itzhiren/archive/2007/10/19/1832725.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/itzhiren/archive/2007/10/19/1832725.aspx</guid><dc:creator>itzhiren</dc:creator><fs:srclink>http://blog.csdn.net/itzhiren/archive/2007/10/19/1832725.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/itzhiren/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/itzhiren/~1143440/212786356/1143428</fs:itemid></item></channel></rss>