<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>性能优化</title>
<link>/html/edu/asp/asp4/index.html</link>
<description>编程开发 / ASP / 性能优化</description>
<language>zh-cn</language>
<generator>&lt;a href='http://www.souzz.net' target='_blank'&gt;搜站长&lt;/a&gt;</generator>
<webmaster>lyjrich@sina.com</webmaster>
<item>
    <title>微软建议的ASP性能优化28条守则</title>
    <link>/html/edu/asp/asp4/13518.html</link>
    <description>引言 性能是一个特征。您必须预先设计性能，否则您以后就得重写应用程序。就是说，有哪些好的策略可使 Active Server Pages ( ASP ) 应用程序性能达到最佳？ 本文介绍了优化 ASP 应用程序和 Visual Basic Scripting Edition (VBScript) 的技巧。本文讨论了许多陷阱。本</description>
    <pubDate>2006-08-07</pubDate>
    <category>性能优化</category>
    <author>秩名</author>
    <comments>天极网</comments>
</item>
<item>
    <title>asp中ADO的优化</title>
    <link>/html/edu/asp/asp4/8997.html</link>
    <description>1 Connection 1.1 Pooling 在Web Application中，常常会出现同时有很多用户同时访问数据库的情况，而且ASP中的对象作用域是页面级的，也就是说，每个页面都要联接和断开数据库，岂不是会很慢？而且每个到SQL Server数据库的联接会带来37k的系统开销，怎么办？ 可能有人</description>
    <pubDate>2005-09-30</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>转贴</comments>
</item>
<item>
    <title>优化你的ASP程序</title>
    <link>/html/edu/asp/asp4/8996.html</link>
    <description>如果你是一位ASP爱好者，你一定想过ASP的执行效率如何？大家都知道ASP效率和CGI的比，在访问量少的时候，它们是不相上下的，有时可能CGI还会好点（我觉得这主要和NT系统运行效率有关），但在访问量大的时候，ASP要比CGI好得多！但是，你有没有想过你所写的ASP程序还能再</description>
    <pubDate>2005-09-30</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>转贴</comments>
</item>
<item>
    <title>程序员十大安全技巧</title>
    <link>/html/edu/asp/asp4/1758.html</link>
    <description>摘要：涉及安全问题时，有很多情况都会导致出现麻烦。您可能信任所有在您的网络上运行的代码，赋予所有用户访问重要文件的权限，并且从不费神检查您机器上的代码是否已经改变。您也可能没有安装防病毒软件，没有给您自己的代码建立安全机制，并赋予太多帐户以太多的权</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>在ASP中优化数据库处理</title>
    <link>/html/edu/asp/asp4/1757.html</link>
    <description>ASP是一个Web服务器端的开发环境，它提供了一种简单易学的脚本（VBScript或Jscript），并带有许多内置的对象，从而提供了一条简捷的编程之路。更为重要的是，ASP中提供了ADO对象，让程序员可以轻松操作各种 数据库 ，从而可以产生和运行动态的、交互的Web服务应用程序。</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>改善ASP性能和外观的技巧集锦</title>
    <link>/html/edu/asp/asp4/1756.html</link>
    <description>技巧 1：将经常使用的数据缓存在 Web 服务器上 典型的 ASP 页从后端数据存储中检索数据，然后将结果转换成超文本标记语言 (HTML)。无论 数据库 的速度如何，从内存中检索数据总要比从后端数据存储中检索数据快得多。从本地硬盘读取数据通常也比从 数据库 中检索数据更</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>如何写出优秀的ASP应用</title>
    <link>/html/edu/asp/asp4/1755.html</link>
    <description>怎样创建鲁棒性、正确性、可维护性和性能俱佳的ASP应用程序？要做什么？不做什么？本文以提纲的形式，给出了主要的Check-Points(检查点)。 什么是ASP Active Server Page，简称ASP，是： l连接网友界面(HTML)和商业逻辑(Business Logic)； l提供一致的、容易使用的、有</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>一次关于ASP变量和对像关闭与不关闭的差别测试</title>
    <link>/html/edu/asp/asp4/1754.html</link>
    <description>对于ASP程序，用到的变量有全局变量，以及一些建立的对象。良好的ASP程序员都有释放它们的习惯，但释放与不释 放之间到底有多少差别呢？所以今天特地对它们进行了一翻测试。 测试内容：测试的全局变量有一个，对象是采用连接SQL的connection对象。 第一次测试：不释放</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>编程优化杂谈</title>
    <link>/html/edu/asp/asp4/1753.html</link>
    <description>1. 在SQL中, 如果选择某字段不为空的记录有两种写法 where columnExample '' 或者是 where columnExample is not null 经测试, 后者比前者要快好几倍(columnExample经过索引) 2. 在ASP中, 使用GetRows与不使用GetRows而直接用Record来循环调用, 两者其实有所差别, 下面</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>避免asp的SQL的执行效率低</title>
    <link>/html/edu/asp/asp4/1752.html</link>
    <description>方法一、尽量使用复杂的SQL来代替简单的一堆 SQL. 同样的事务，一个复杂的SQL完成的效率高于一堆简单SQL完成的效率。有多个查询时，要善于使用JOIN。 oRs=oConn.Execute(&quot;SELECT * FROM Books&quot;) while not oRs.Eof strSQL = &quot;SELECT * FROM Authors WHERE AuthorID=&quot;oRs</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>让你的SQL运行得更快</title>
    <link>/html/edu/asp/asp4/1751.html</link>
    <description>---- 人们在使用SQL时往往会陷入一个误区，即太关注于所得的结果是否正确，而忽略了不同的实现方法之间可能存在的 性能差异，这种性能差异在大型的或是复杂的 数据库 环境中（如联机事务处理OLTP或决策支持系统DSS）中表现得尤为明 显。笔者在工作实践中发现，不良的SQL</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>什么才是提高ASP性能的最佳选择（续）</title>
    <link>/html/edu/asp/asp4/1750.html</link>
    <description>在本文的第一部分中，我回顾了有关ASP开发的一些基本问题，介绍了一些性能测试的结果，以理解我们放置在页面中的代码可能对运行性能造成什么样的影响。在这个系列的第二部分，我们将探讨经过论证的ASP最广泛的用途，即通过ActiveX 数据对象(ADO)交互使用 数据库 内容。</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>什么才是提高ASP性能的最佳选择</title>
    <link>/html/edu/asp/asp4/1749.html</link>
    <description>ASP开发人员为了在他们的设计项目中获得更好的性能和可扩展性而不断努力。幸运地是，有许多书籍和站点在这方面提供了很好的建议。但是这些建议的基础都是从ASP平台工作的结构上所得出的结论，对实际获得的性能的提高没有量的测量。由于这些建议需要更加复杂的编码过程并</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>ASP提速技巧</title>
    <link>/html/edu/asp/asp4/1748.html</link>
    <description>技巧之一：提高使用Request集合的效率 访问一个ASP集合来提取一个值是费时的、占用计算资源的过程。因为这个操作包含了一系列对相关集合的搜索，这比访问 一个局部变量要慢得多。因此，如果打算在页面中多次使用Request集合中的一个值，应该考虑将其存贮为一个局部变量</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>如何提高WEB程序的效率</title>
    <link>/html/edu/asp/asp4/1747.html</link>
    <description>很多网友非常不喜欢用ASP来编程，他们总是抱怨说ASP程序太慢，效率太低。更希望用PHP，JSP等来写程序。其实不能从 &quot;认为&quot; 这个角度来看问题 ，而应该从实际中看问题，ASP真的很慢的吗，那么微软的站为何用ASP也不慢呢？PHP真的很快吗，其实它也仍然是解释性的语言。只不</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>提高ASP性能的最佳选择（续）</title>
    <link>/html/edu/asp/asp4/1746.html</link>
    <description>在本文的第一部分中，我回顾了有关ASP开发的一些基本问题，介绍了一些性能测试的结果，以理解我们放置在页面中的代码可能对运行性能造成什么样的影响。在这个系列的第二部分，我们将探讨经过论证的ASP最广泛的用途，即通过ActiveX 数据对象(ADO)交互使用 数据库 内容。A</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>提高ASP性能的最佳选择</title>
    <link>/html/edu/asp/asp4/1745.html</link>
    <description>ASP开发人员为了在他们的设计项目中获得更好的性能和可扩展性而不断努力。幸运地是，有许多书籍和站点在这方面提供了很好的建议。但是这些建议的基础都是从ASP平台工作的结构上所得出的结论，对实际获得的性能的提高没有量的测量。由于这些建议需要更加复杂的编码过程并</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>一次关于ASP变量和对像关闭与不关闭的差别测试</title>
    <link>/html/edu/asp/asp4/1744.html</link>
    <description>对于ASP程序，用到的变量有全局变量，以及一些建立的对象。良好的ASP程序员都有释放它们的习惯，但释放与不释 放之间到底有多少差别呢？所以今天特地对它们进行了一翻测试。 测试内容：测试的全局变量有一个，对象是采用连接SQL的connection对象。 第一次测试：不释放</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>如何写出优秀的ASP应用</title>
    <link>/html/edu/asp/asp4/1743.html</link>
    <description>怎样创建鲁棒性、正确性、可维护性和性能俱佳的ASP应用程序？要做什么？不做什么？本文以提纲的形式，给出了主要的Check-Points(检查点)。 什么是ASP Active Server Page，简称ASP，是： l连接网友界面(HTML)和商业逻辑(Business Logic)； l提供一致的、容易使用的、有</description>
    <pubDate>2005-08-26</pubDate>
    <category>性能优化</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>

</channel>
</rss>
