stephen walther
microsoft corporation
适用于:
microsoft asp.net 2.0
microsoft asp.net framework
microsoft sql server
microsoft visual studio .net
摘要:本文中,stephen walther 将重点介绍 asp.net 2.0 中新增的缓存功能,以及如何使用这些新功能改进 asp.net 应用程序的性能和可扩展性。(本文包含一些指向英文站点的链接。)
本页内容
更轻松的数据缓存
使用 sql cache invalidation
使用 post-cache substitution
结论
对于由数据库驱动的 web 应用程序来说,要改进其性能,最好的方法就是使用缓存。从数据库中检索数据可能是您在 web 站点上执行的最慢的操作之一。如果能够将数据库中的数据缓存到内存中,就无需在请求每个页面时都访问数据库,从而可以大大提高应用程序的性能。
缓存有一个且只有一个缺点,那就是数据过期的问题。如果将数据库表的内容缓存到内存中,当基础数据库表中的记录发生更改时,您的 web 应用程序将显示过期的、不准确的数据。对于某些类型的数据,即便显示的数据稍微有些过期,影响也不会太大;但对于诸如股票价格和竞拍出价之类的数据,即使显示的数据稍微有些过期也是不可接受的。
microsoft asp.net 1.0 framework 没有针对此问题提供一个完善的解决方案。使用 asp.net 1.0 framework 时,您不得不在性能和数据过期之间作出权衡。幸运的是,microsoft asp.net 2.0 framework 提供了一项新功能,称为 sql cache invalidation,可以解决这一棘手的问题。
在本文中,您将进一步了解 asp.net 2.0 framework 中许多新的缓存改进功能。首先,您将了解到如何在新增的 datasource 控件中集成缓存支持。然后,您将了解到如何配置和使用 sql cache invalidation。最后,您将了解到随 asp.net 2.0 framework 引入的一个新控件:substitution 控件,使用该控件可以向已缓存的页面中插入动态内容。
更轻松的数据缓存
在 asp.net 2.0 framework 中,最大的变化之一就是在 asp.net 页面上访问数据库数据的方式发生了变化。asp.net 2.0 framework 包含一组新的控件,统称为 datasource 控件。您可以使用这些控件来表示数据源,例如数据库或 xml 文件。
在 asp.net 1.0 framework 中,是通过将控件绑定到 dataset 或 datareader,使用控件来显示数据库数据的。而在 asp.net 2.0 framework 中,通常是将控件绑定到 datasource 控件。通过 datasource 控件,您可以创建显示数据库数据的 asp.net 页面,而不用为访问数据库编写任何代码。
在处理数据库数据时,通常使用下列三个 datasource 控件中的一个控件:
• sqldatasource — 表示 sql 数据源,例如 microsoft sql server 或 oracle 数据库。
• accessdatasource — 一个专用的 sqldatasource 控件,用于 microsoft access 数据库。
• objectdatasource — 表示充当数据源的自定义业务对象。
例如,假设您要在 dropdownlist 控件中显示从数据库中检索到的书目列表(参见图 1)。列表 1 中的页面说明了如何将 dropdownlist 控件绑定到 sqldatasource 控件。
图 1:使用 sqldatasource 控件检索数据
列表 1:displaytitles.aspx
<html>
<head runat=”server”>
<title>display titles</title>
</head>
<body>
<form id=”form1″ runat=”server”>
<asp:dropdownlist
id=”dropdownlist1″
datasourceid=”sqldatasource1″
datatextfield=”title”
runat=”server” />
<asp:sqldatasource
id=”sqldatasource1″
connectionstring=”server=localhost;database=pubs”
selectcommand=”select title from titles”
runat=”server” />
</form>
</body>
</html>
请注意,列表 1 中的 sqldatasource 控件用于提供连接字符串,sql select 命令用于从数据库中检索记录。dropdownlist 控件通过其 datasourceid 属性绑定到 sqldatasource 控件。
使用 datasource 控件缓存数据
使用 datasource 控件,不仅可以更轻松地连接数据库,还使缓存数据库数据变得更容易。只需在 sqldatasource 控件上设置一两个属性,就可以自动在内存中缓存由 datasource 控件表示的数据。
例如,如果要将 titles 数据库表在内存中缓存至少 10 分钟,可以按照以下方式声明 sqldatasource 控件。
<asp:sqldatasource
id=”sqldatasource1″
enablecaching=”true”
cacheduration=”600″
connectionstring=”server=localhost;database=pubs”
selectcommand=”select title from titles”
runat=”server” />
如果 enablecaching 属性的值为 true,sqldatasource 将自动缓存通过 selectcommand 检索到的数据。使用 cacheduration 属性,可以指定从数据库中刷新数据之前缓存数据的时间(以秒为单位)。
默认情况下,sqldatasource 使用绝对过期策略来缓存数据,即每隔指定的秒数就从数据库中刷新一次。此外,您还可以选择使用可变过期策略。如果将 sqldatasource 配置为使用可变过期策略,那么只要持续访问数据,数据就不会过期。如果需要缓存大量项目,使用可变过期策略将非常有用,因为这种过期策略将只在内存中保留访问最频繁的项目。
例如,下面的 sqldatasourcecontrol 被配置为使用可变过期策略,过期时间为 10 分钟。
<asp:sqldatasource
id=”sqldatasource1″
enablecaching=”true”
cacheexpirationpolicy=”sliding”
cacheduration=”600″
connectionstring=”server=localhost;database=pubs”
selectcommand=”select title from titles”
runat=”server” />
由于 cacheexpirationpolicy 属性的值被设置为 sliding,cacheduration 属性的值被设置为 600,因此,只要在 10 分钟内持续访问,此 sqldatasource 表示的数据就会一直保留在内存中。
返回页首
使用 sql cache invalidation
sql cache invalidation 是 asp.net 2.0 framework 最值得期待的新增功能之一。使用 sql cache invalidation 可以获得缓存的全部性能优势,而不用担心数据过期的问题。sql cache invalidation 使您可以在基础数据库中的数据发生更改时自动更新缓存中的数据。
sql cache invalidation 通过在后台不断轮询数据库来检查数据更改。每隔一定的时间(毫秒),asp.net framework 就会检查数据库中是否存在更新。如果 asp.net framework 检测到任何更改,将从缓存中删除从数据库中添加的、依赖于数据库的任何项目(即,这些项目将过期)。
注意:microsoft sql server 2005 支持一种截然不同的 sql cache invalidation 方法。您可以配置 sql server 2005,使其在数据库、数据库表或数据库行发生变化时通知 asp.net 应用程序。这样,asp.net framework 就不需要通过不断轮询 sql server 2005 数据库来检查数据更改了。
需要注意的是,sql cache invalidation 只能用于 microsoft sql server 7 及更高版本,不能用于其他数据库,例如 microsoft access 或 oracle。
在缓存整个页面的输出、使用 datasource控件或直接使用 cache 对象时,都可以使用 sql cache invalidation。下面将分别介绍这三种情况。
配置 sql cache invalidation
在 web 应用程序中使用 sql cache invalidation 之前,首先必须执行一些配置步骤。必须将 microsoft sql server 配置为支持 sql cache invalidation,还必须在应用程序的 web 配置文件中添加必要的配置信息。
可以按照以下两种方法配置 sql server:使用 aspnet_regsql 命令行工具,或者使用 sqlcachedependencyadmin 类。
使用 aspnet_reqsql 启用 sql cache invalidation
使用 aspnet_regsql 工具,您可以通过命令行来配置 sql cache invalidation。aspnet_regsql 工具位于 windows\microsoft.net\framework\[版本] 文件夹中。要使用此工具,必须打开命令提示符窗口并浏览到此文件夹。
要在使用 pubs 数据库时支持 sql cache invalidation,需要执行以下命令。
aspnet_regsql -e -d pubs -ed
-e 选项使 aspnet_regsql 工具在连接到数据库服务器时使用集成的安全设置。-d 选项用于选择 pubs 数据库。最后,-ed 选项用于为数据库启用 sql cache invalidation。
执行此命令时,将在数据库中添加一个名为 aspnet_sqlcachetablesforchangenotification 的新数据库表。此表包含启用了 sql cache invalidation 的所有数据库表的列表。此命令还将在数据库中添加一组存储过程。
为数据库启用 sql cache invalidation 后,必须从数据库中选择要启用 sql cache invalidation 的特定表。以下命令将为 titles 数据库表启用 sql cache invalidation。
aspnet_regsql -e -d pubs -t titles -et
-t 选项用于选择数据库表。-et 选项为数据库表启用 sql cache invalidation。当然,您可以通过对每个数据库表重复执行此命令,为多个表启用 sql cache invalidation。
执行此命令时,将在数据库表中添加一个触发器。只要您对表进行了修改,此触发器就将触发并更新 aspnet_sqlcachetablesforchangenotification 表。
最后,要获取某个特定数据库中当前启用了 sql cache invalidation 的表的列表,可以使用以下命令。
aspnet_regsql -e -d pubs -lt
此方法将从 aspnet_sqlcachetablesforchangenotification 中选择表的列表。此外,您也可以通过直接在该数据库表中执行查询来检索此信息。
使用 sqlcachedependencyadmin 类
aspnet_regsql 工具在后台使用 sqlcachedependencyadmin 类的方法来配置 microsoft sql server。如果您愿意,可以直接从 asp.net 页面中使用此类的方法。
sqlcachedependencyadmin 类具有五个重要的方法:
• disablenotifications — 为特定数据库禁用 sql cache invalidation。
• disabletablefornotifications — 为数据库中的特定表禁用 sql cache invalidation。
• enablenotifications — 为特定数据库启用 sql cache invalidation。
• enabletablefornotifications — 为数据库中的特定表启用 sql cache invalidation。
• gettablesenabledfornotifications — 返回启用了 sql cache invalidation 的所有表的列表。
例如,使用列表 2 中的 asp.net 页面,您可以为 pubs 数据库中的任何表配置 sql cache invalidation(参见图 2)。
图 2:从 asp.net 页面中启用 sql cache invalidation
列表 2:enablesci.aspx (c#)
<%@ page language=”c#” %>
<%@ import namespace=”system.web.caching” %>
<script runat=”server”>
const string connectionstring = “server=localhost;database=pubs”;
void page_load()
{
if (!ispostback)
{
sqlcachedependencyadmin.enablenotifications(
connectionstring);
sqldatasource1.selectparameters.add(“connectionstring”,
connectionstring);
}
}
void enabletable(object s, eventargs e)
{
try
{
sqlcachedependencyadmin.enabletablefornotifications(
connectionstring, txttablename.text);
}
catch (exception ex)
{
lblerrormessage.text = ex.message;
}
txttablename.text = “”;
}
</script>
<html>
<head runat=”server”>
<title>enable sql cache invalidation</title>
</head>
<body>
<form id=”form1″ runat=”server”>
<h1>sql cache invalidation</h1>
以下表格已启用 sql cache invalidation:
<p>
<asp:gridview id=”grdtables”
datasourceid=”sqldatasource1″ cellpadding=”10″
showheader=”false” runat=”server” />
</p>
<asp:objectdatasource
id=”sqldatasource1″
typename=”system.web.caching.sqlcachedependencyadmin”
selectmethod=”gettablesenabledfornotifications”
runat=”server” />
<p>
<asp:label id=”lblerrormessage” enableviewstate=”false”
forecolor=”red” runat=”server” />
</p>
<asp:textbox id=”txttablename” runat=”server” />
<asp:button text=”enable table” onclick=”enabletable”
runat=”server” />
</form>
</body>
</html>
列表 2:enablesci.aspx (visual basic .net)
<%@ page language=”vb” %>
<%@ import namespace=”system.web.caching” %>
<script runat=”server”>
const connectionstring as string = “server=localhost;database=pubs”
sub page_load()
if not ispostback then
sqlcachedependencyadmin.enablenotifications( _
connectionstring)
sqldatasource1.selectparameters.add(“connectionstring”, _
connectionstring)
end if
end sub
sub enabletable(byval s as object, byval e as eventargs)
try
sqlcachedependencyadmin.enabletablefornotifications( _
connectionstring, txttablename.text)
catch ex as exception
lblerrormessage.text = ex.message
end try
txttablename.text = “”
end sub
</script>
<html>
<head id=”head1″ runat=”server”>
<title>configuresci</title>
</head>
<body>
<form id=”form1″ runat=”server”>
<h1>sql cache invalidation</h1>
以下表格已启用 sql cache invalidation:
<p>
<asp:gridview id=”grdtables” datasourceid=”sqldatasource1″
cellpadding=”10″ showheader=”false” runat=”server” />
</p>
<asp:objectdatasource
id=”sqldatasource1″
typename=”system.web.caching.sqlcachedependencyadmin”
selectmethod=”gettablesenabledfornotifications”
runat=”server” />
<p>
<asp:label id=”lblerrormessage” enableviewstate=”false”
forecolor=”red” runat=”server” />
</p>
<asp:textbox id=”txttablename” runat=”server” />
<asp:button id=”button1″ text=”enable table”
onclick=”enabletable” runat=”server” />
</form>
</body>
</html>
在列表 2 中,connectionstring 常量用于选择启用了 sql cache invalidation 的数据库(如果要为 pubs 数据库以外的数据库启用 sql cache invalidation,可以更改此常量的值)。在 page_load 方法中,调用 sqlcachedependencyadmin 类上的 enablenotifications 方法,为由 connectionstring 常量指定的数据库启用 sql cache invalidation。
列表 2 中的 gridview 显示了当前启用了 sql cache invalidation 的所有数据库表。gridview 被绑定到 objectdatasource 控件上,该控件为其 selectmethod 调用 gettablesneabledfornotifications 方法。
最后,您可以使用列表 2 中的页面为其他表启用 sql cache invalidation。在文本框中输入表的名称并单击“enable table”按钮时,将调用 enabletablefornotifications 方法。
sql cache invalidation 的 web 配置设置
在 asp.net 应用程序中使用 sql cache invalidation 之前,下一步要做的是更新您的 web 配置文件。您需要配置 asp.net framework,以便轮询启用了 sql cache invalidation 的数据库。
列表 3 中的 web 配置文件包含轮询 pubs 数据库所必需的配置信息。
列表 3:web.config
<configuration>
<connectionstrings>
<add name=”mysqlserver”
connectionstring=”server=localhost;database=pubs” />
</connectionstrings>
<system.web>
<caching>
<sqlcachedependency enabled=”true”>
<databases>
<add
name=”pubs”
connectionstringname=”mysqlserver”
polltime=”60000″ />
</databases>
</sqlcachedependency>
</caching>
</system.web>
</configuration>
列表 3 中的 web 配置文件包含两部分。<connectionstrings> 部分用于创建数据库连接字符串,以连接到名为 mysqlserver 的 pubs 数据库。
caching 部分用于配置 sql cache invalidation 轮询。在 <databases> 子部分中,您可以列出要对其进行轮询以检查数据更改的一个或多个数据库。在列表 3 中,mysqlserver 表示的数据库每分钟(每 60000 毫秒)轮询一次。
您可以为不同的数据库指定不同的轮询间隔。每次轮询数据库以检查数据更改时,服务器都必须执行一些操作。如果您认为数据库中的数据不会频繁地更改,可以增加轮询间隔。
在页面输出缓存中使用 sql cache invalidation
现在,我们已经完成了 sql cache invalidation 的所有配置步骤,可以在 asp.net 页面中使用它了。一种方法是在页面输出缓存中使用 sql cache invalidation。页面输出缓存允许您在内存中缓存页面所显示的所有内容。通过使用 sql cache invalidation,您可以在(且只在)数据库表发生更改时自动更新缓存的页面。
例如,列表 4 中的页面在 gridview 控件中显示了 titles 数据库表的内容。在该页面的顶部,outputcache 指令用于在内存中缓存页面内容。如果 titles 数据库表发生更改,sqldependency 属性将使页面更新。
列表 4:outputcachetitles.aspx
<%@ outputcache sqldependency=”pubs:titles”
duration=”6000″ varybyparam=”none” %>
<html>
<head runat=”server”>
<title>output cache titles</title>
</head>
<body>
<form id=”form1″ runat=”server”>
<%= datetime.now %>
<asp:gridview
id=”grdtitles”
datasourceid=”sqldatasource1″
runat=”server” />
<asp:sqldatasource
id=”sqldatasource1″
selectcommand=”select * from titles”
connectionstring=”<%$ connectionstrings:mysqlserver %>”
runat=”server” />
</form>
</body>
</html>
请注意,sqldependency 属性引用了 web 配置文件中定义的数据库的名称。由于我们指定了每分钟轮询一次 pubs 数据库以检查数据更改,因此如果对该数据库进行了更改,列表 4 中的页面将在一分钟之内进行更新。
您可以为 sqldependency 属性值列出多个数据库和/或多个数据库表。要创建多个依赖关系,只需用分号分隔每个依赖关系即可。
在 datasource 控件中使用 sql cache invalidation
除了在页面输出缓存中使用 sql cache invalidation 之外,还可以直接在 datasource 控件中使用 sql cache invalidation。如果要在多个页面中使用相同的数据库数据,请考虑在 datasource 控件中使用 sql cache invalidation。sqldatasource、accessdatasource 和 objectdatasource 控件都支持 sqlcachedependency 属性。
例如,列表 5 中的页面在 sqldatasource 控件中使用了 sql cache invalidation。
列表 5:sqldatasourcecaching.aspx
<html>
<head id=”head1″ runat=”server”>
<title>sqldatasource caching</title>
</head>
<body>
<form id=”form1″ runat=”server”>
<%= datetime.now %>
<asp:gridview
id=”grdtitles”
datasourceid=”sqldatasource1″
runat=”server” />
<asp:sqldatasource
id=”sqldatasource1″
enablecaching=”true”
sqlcachedependency=”pubs:titles”
selectcommand=”select * from titles”
connectionstring=”<%$ connectionstrings:mysqlserver %>”
runat=”server” />
</form>
</body>
</html>
在列表 5 中,sqldatasource 控件是使用 enablecaching 和 sqlcachedependency 这两个属性声明的。sqlcachedependency 属性使用的语法与 outputcache 指令的 sqldependency 属性相同。您需要列出数据库的名称,后跟数据库表的名称。
在 cache 对象中使用 sql cache invalidation
最后,您还可以在 cache 对象中使用 sql cache invalidation。此选项使您可以最大程度地对 sql cache invalidation 进行编程控制。
要在 cache 对象中使用 sql cache invalidation,您需要创建一个 sqlcachedependency 对象实例。使用 insert 方法在 cache 中插入新对象时,可以使用 sqlcachedependency 对象。
例如,列表 6 中的页面显示了 titles 数据库表中的记录数。计数是基于对基础数据库表的依赖关系进行缓存的。
列表 6:displaytitlecount.aspx (c#)
<%@ page language=”c#” %>
<%@ import namespace=”system.data.sqlclient” %>
<script runat=”server”>
void page_load()
{
int count = 0;
if (cache[“titlecount”] != null)
{
count = (int)cache[“titlecount”];
}
else
{
string connectionstring =
configurationsettings.connectionstrings[
“mysqlserver”].connectionstring;
sqlconnection con = new sqlconnection(connectionstring);
sqlcommand cmd = new
sqlcommand(“select count(*) from titles”, con);
con.open();
count = (int)cmd.executescalar();
con.close();
cache.insert(“titlecount”, count,
new sqlcachedependency(“pubs”, “titles”));
}
lbltitlecount.text = count.tostring();
}
</script>
<html>
<head runat=”server”>
<title>display title count</title>
</head>
<body>
<form id=”form1″ runat=”server”>
<asp:label id=”lbltitlecount” runat=”server” />
</form>
</body>
</html>
列表 6:displaytitlecount.aspx (visual basic .net)
<%@ page language=”vb” %>
<%@ import namespace=”system.data.sqlclient” %>
<script runat=”server”>
sub page_load()
dim count as integer = 0
if not cache(“titlecount”) is nothing then
count = convert.toint32(cache(“titlecount”))
else
dim connectionstring as string = _
configurationsettings.connectionstrings( _
“mysqlserver”).connectionstring
dim con as new sqlconnection(connectionstring)
dim cmd as new _
sqlcommand(“select count(*) from titles”, con)
con.open()
count = convert.toint32(cmd.executescalar())
con.close()
cache.insert(“titlecount”, count, _
new sqlcachedependency(“pubs”, “titles”))
end if
lbltitlecount.text = count.tostring()
end sub
</script>
<html>
<head id=”head1″ runat=”server”>
<title>display titles count</title>
</head>
<body>
<form id=”form1″ runat=”server”>
<asp:label id=”lbltitlecount” runat=”server” />
</form>
</body>
</html>
返回页首
使用 post-cache substitution
在许多情况下,您需要缓存页面的一部分,而不是整个页面。例如,在您的 web 站点主页上,您可能希望同时显示随机的标题广告和数据库表中的记录。如果缓存整个页面,每个用户都将在每次请求的页面上看到同一个标题广告。
要处理这种同时混有动态内容和缓存内容的问题,一种方法是使用 web 用户控件。因为可以为 web 用户控件添加 outputcache 指令,所以即使不缓存包含页面的内容,也可以缓存 web 用户控件的内容。
但有时候可能会事与愿违。虽然您可以使用 web 用户控件在动态页面上添加缓存的内容,但很多情况下,您实际上是想在缓存的页面中添加动态内容。例如,假设您要缓存整个页面的内容,只留一小块区域用于显示当前用户的用户名。这种情况下最好使用 post-cache substitution。
asp.net 2.0 framework 引入了一种新控件,称为 substitution 控件。您可以使用 substitution 控件在缓存的页面中插入动态内容。列表 7 中的页面使用 substitution 控件将用户名插入到缓存的内容中(参见图 3)。
图 3:使用 substitution 控件显示用户名
列表 7:postcachesubstitution.aspx (c#)
<%@ page language=”c#” %>
<%@ outputcache duration=”6000″ varybyparam=”none” %>
<script runat=”server”>
static string displayusername(httpcontext context)
{
if (!context.request.isauthenticated)
return “anonymous”;
else
return context.user.identity.name;
}
</script>
<html>
<head runat=”server”>
<title>post cache substitution</title>
</head>
<body>
<form id=”form1″ runat=”server”>
welcome <asp:substitution
methodname=”displayusername” runat=”server” />!
<p>
此页已缓存, 因为时间
<%= datetime.now.tostring(“t”) %> 并无改变。
</p>
</form>
</body>
</html>
列表 7:postcachesubstitution.aspx (visual basic .net)
<%@ page language=”vb” %>
<%@ outputcache duration=”6000″ varybyparam=”none” %>
<script runat=”server”>
shared function displayusername(byval context as httpcontext) _
as string
if not context.request.isauthenticated then
return “anonymous”
else
return context.user.identity.name
end if
end function
</script>
<html>
<head id=”head1″ runat=”server”>
<title>post cache substitution</title>
</head>
<body>
<form id=”form1″ runat=”server”>
welcome <asp:substitution
id=”substitution1″
methodname=”displayusername”
runat=”server” />!
<p>
此页已缓存, 因为时间
<%= datetime.now.tostring(“t”) %> 并无改变。
</p>
</form>
</body>
</html>
substitution 控件有一个非常重要的属性:即 methodname 属性。methodname 属性用于表示为返回动态内容而调用的方法。由 substitution 控件调用的方法必须是静态方法(在 visual basic .net 中共享的方法)。此外,该方法还必须具有一个表示当前 httpcontext 的参数。
在 asp.net 2.0 framework 中,已对 adrotator 控件进行了修改以支持 post-cache substitution。如果在使用 outputcache 指令的页面中添加 adrotator 控件,adrotator 控件将自动从其包含页面的缓存策略中排除出去。
返回页首
结论
缓存对由数据库驱动的 web 应用程序的性能具有非常大的影响。幸运的是,asp.net 2.0 framework 提供了许多新的重要增强功能,使您可以在应用程序中更轻松地使用缓存功能。
新增的 datasource 控件中包含的属性使得在内存中缓存数据库数据变得非常容易。通过使用 datasource 控件,您可以检索并缓存数据库数据,而无需编写任何代码。
新增的 sql cache invalidation 支持使您可以在基础数据库中的数据发生更改时自动在缓存中重新加载数据库数据。此功能为您提供了缓存的所有性能优势,而不用担心数据过期的问题。
最后,使用新增的 substitution 控件,您可以更轻松地在缓存的页面中混合动态内容。substitution 控件为您在缓存的页面中插入动态内容提供了一个独立的空间。
作者简介
stephen walther 编写了有关 asp.net 的畅销书 asp.net unleashed。此外,他还是 asp.net community starter kit(microsoft 开发的 asp.net 示例应用程序)的体系结构设计师和主要开发人员。他还通过自己的公司 superexpert (http://www.superexpert.com/) 为美国的公司(包括 nasa 和 microsoft)提供 asp.net 培训。
ASP.NET 2.0 中改进的缓存功能-.NET教程,Asp.Net开发
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » ASP.NET 2.0 中改进的缓存功能-.NET教程,Asp.Net开发
相关推荐
-      VS2010的aspx文件中的html代码的格式化方法
-      .net 反序题目的详细解答第1/2页
-      asp.net创建html文本文件实例
-      比较完整的 asp.net 学习流程
-      官网 Ext direct包中.NET版的问题
-      C# XML操作 代码大全(读XML,写XML,更新,删除节点,与dataset结合等)第1/2页
-      c# 连接字符串数据库服务器端口号 .net状态服务器端口号
-      asp.net教程:简单的C#图片上传代码或C#文件上传代码