GridView测试实例

Web.config中配置数据库连接字符串:
<appSettings>
    
<add key="ContactsDatabase" value="server=hi4-sv09; User ID=MyBeer_test;Password=mybeertest;database=MyBeer20G;Connection Reset=FALSE;Max Pool Size=1000; Min Pool Size=5" />
    
</appSettings>

前台页面:
<asp:GridView ID="GridView1" DataSourceID="SqlDataSource1" runat="server" />
            
<asp:SqlDataSource ID="SqlDataSource1" runat="server" 
              SelectCommand
="SELECT * FROM [qkpi_item]"
              ConnectionString
="<%$ appSettings:ContactsDatabase %>" />    

posted on 2007-03-01 10:02  Sammy  阅读(211)  评论(0编辑  收藏  举报

导航