Using the DataReader mode for executing a SQL Statement : DataReader « ADO.net Database « ASP.Net

Home
ASP.Net
1.ADO.net Database
2.Ajax
3.Asp Control
4.Collections
5.Components
6.Data Binding
7.Development
8.File Directory
9.HTML Control
10.Language Basics
11.Login Security
12.Mobile Control
13.Network
14.Page
15.Request
16.Response
17.Server
18.Session Cookie
19.Sitemap
20.Theme Style
21.User Control and Master Page
22.Validation by Control
23.Validation by Function
24.WebPart
25.WPF
26.XML
ASP.Net » ADO.net Database » DataReader 
Using the DataReader mode for executing a SQL Statement

<%@ Page Language="C#" %>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Using the DataReader mode for executing a SQL Statement</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:SqlDataSource ID="categoriesSource" 
                           runat="server"
                           ProviderName="System.Data.SqlClient" 
                           DataSourceMode="DataReader"
                           ConnectionString="<%$ ConnectionStrings:AdventureWorks %>"
                           SelectCommand="Select ProductSubcategoryID, Name from Production.ProductSubcategory">            
        </asp:SqlDataSource>
        Categories: 
        <asp:DropDownList runat="server" 
                          DataSourceID="categoriesSource"
                          DataValueField="ProductSubcategoryID" 
                          DataTextField="Name" 
                          AutoPostBack="true"
                          ID="lstCategories" />
        <asp:SqlDataSource ID="productsSource" 
                           runat="server"
                           ProviderName="System.Data.SqlClient" 
                           DataSourceMode="DataReader"
                           ConnectionString="<%$ ConnectionStrings:AdventureWorks %>"
                           SelectCommand="Select ProductID, Name, ProductNumber, StandardCost from Production.Product Where ProductSubcategoryID=@ProductSubcategoryID">
            <SelectParameters>
                <asp:ControlParameter 
                     ControlID="lstCategories" 
                     Name="ProductSubcategoryID"
                     PropertyName="SelectedValue" />
            </SelectParameters>
        </asp:SqlDataSource>
        <asp:GridView runat="server" DataSourceID="productsSource"
            HeaderStyle-HorizontalAlign="Center" HeaderStyle-Font-Bold="True"
            HeaderStyle-BackColor="blue" HeaderStyle-ForeColor="White" />        
    </div>
    </form>
</body>
</html>
File: Web.config

<configuration>
  <appSettings/>
  <connectionStrings>
        <add name="AdventureWorks" 
             connectionString="Data Source=localhost\SQLEXPRESS;Initial Catalog=AdventureWorks;Integrated Security=True"
             providerName="System.Data.SqlClient" />
    </connectionStrings>
  <system.web>
    <compilation debug="true" strict="false" explicit="true">
      <codeSubDirectories>
        <add directoryName="VB"></add>
        <add directoryName="CS"></add>
      </codeSubDirectories>
    </compilation>
    <pages>
      <namespaces>
        <clear/>
        <add namespace="System"/>
        <add namespace="System.Collections"/>
        <add namespace="System.Collections.Specialized"/>
        <add namespace="System.Configuration"/>
        <add namespace="System.Text"/>
        <add namespace="System.Text.RegularExpressions"/>
        <add namespace="System.Web"/>
        <add namespace="System.Web.Caching"/>
        <add namespace="System.Web.SessionState"/>
        <add namespace="System.Web.Security"/>
        <add namespace="System.Web.Profile"/>
        <add namespace="System.Web.UI"/>
        <add namespace="System.Web.UI.WebControls"/>
        <add namespace="System.Web.UI.WebControls.WebParts"/>
        <add namespace="System.Web.UI.HtmlControls"/>
      </namespaces>
    </pages>
    <authentication mode="Windows"></authentication>
    <identity impersonate="true"/>
  </system.web>
</configuration>

 
Related examples in the same category
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.