Web.config代码: 

<?xml version="1.0"?>
<configuration>
 <connectionStrings>
  
    <add name="Pubs" connectionString="Server=localhost;uid=sa;pwd=123456; database=pubs;"  providerName="System.Data.SqlClient" />

  
  
 </connectionStrings>
    <system.web>
       <compilation debug="true"/>
 
        <caching>
            <sqlCacheDependency enabled="true" pollTime="1000">
                <databases>
                    <add name="Pubs" connectionStringName="Pubs"/>
                </databases>
            </sqlCacheDependency>
        </caching>
        </system.web>
</configuration>

Default.aspx代码:

<%@ Page Language="C#" %>
<html>
<head runat="server">
  <title>GridView Bound to SqlDataSource</title>
</head>
<body>
  <form />
  </form>
</body>
</html>

相关文章: