Adding an InsertCommand to the SqlDataSource control : SqlDataSource « ADO.net Database « ASP.Net






Adding an InsertCommand to the SqlDataSource control

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:GridView ID="GridView1" 
                      runat="server" 
                      DataSourceId="SqlDataSource1" 
                      AllowPaging="True"
                      BorderColor="#DEBA84" 
                      BorderStyle="None" 
                      BorderWidth="1px" 
                      BackColor="#DEBA84" 
                      CellSpacing="2" 
                      CellPadding="3" 
                      DataKeyNames="CustomerID" 
                      AutoGenerateSelectButton="True" 
                      AutoGenerateColumns="False" 
                      PageSize="5">
             <FooterStyle ForeColor="#8C4510"
                          BackColor="#F7DFB5"></FooterStyle>
             <PagerStyle ForeColor="#8C4510" 
                         HorizontalAlign="Center"></PagerStyle>
             <HeaderStyle ForeColor="White" 
                          BackColor="#A55129" 
                          Font-Bold="True"></HeaderStyle>
             <Columns>
                 <asp:BoundField ReadOnly="True" 
                                 HeaderText="CustomerID"
                                 DataField="CustomerID" 
                                 SortExpression="CustomerID">
                 </asp:BoundField>
                 <asp:BoundField HeaderText="CompanyName"
                                 DataField="CompanyName" 
                                 SortExpression="CompanyName">
                 </asp:BoundField>
                 <asp:BoundField HeaderText="ContactName"
                                 DataField="ContactName" 
                                 SortExpression="ContactName">
                 </asp:BoundField>
                 <asp:BoundField HeaderText="ContactTitle"
                                 DataField="ContactTitle" 
                                 SortExpression="ContactTitle">
                 </asp:BoundField>
                 <asp:BoundField HeaderText="Address" DataField="Address"
                      SortExpression="Address"></asp:BoundField>
                 <asp:BoundField HeaderText="City" DataField="City"
                      SortExpression="City"></asp:BoundField>
                 <asp:BoundField HeaderText="Region" DataField="Region"
                      SortExpression="Region"></asp:BoundField>
                 <asp:BoundField HeaderText="PostalCode" DataField="PostalCode"
                      SortExpression="PostalCode"></asp:BoundField>
                 <asp:BoundField HeaderText="Country" DataField="Country"
                      SortExpression="Country"></asp:BoundField>
                 <asp:BoundField HeaderText="Phone" DataField="Phone"
                      SortExpression="Phone"></asp:BoundField>
                 <asp:BoundField HeaderText="Fax" DataField="Fax"
                      SortExpression="Fax"></asp:BoundField>
            </Columns>
            <SelectedRowStyle ForeColor="White" BackColor="#738A9C" 
                 Font-Bold="True"></SelectedRowStyle>
            <RowStyle ForeColor="#8C4510" BackColor="#FFF7E7"></RowStyle>
        </asp:GridView>
        <p><b>Customer Details:</b></p>
        <asp:DetailsView ID="DetailsView1" 
             runat="server" 
             DataSourceId="SqlDataSource2"
             BorderColor="#DEBA84" 
             BorderStyle="None" 
             BorderWidth="1px"
             BackColor="#DEBA84"
             CellSpacing="2"
             CellPadding="3"
             AutoGenerateRows="False"
             AutoGenerateInsertButton="true"
             DataKeyNames="CustomerID">
             <FooterStyle ForeColor="#8C4510" BackColor="#F7DFB5"></FooterStyle>
             <RowStyle ForeColor="#8C4510" BackColor="#FFF7E7"></RowStyle>
             <PagerStyle ForeColor="#8C4510" HorizontalAlign="Center"></PagerStyle>
             <Fields>
                <asp:BoundField ReadOnly="True" HeaderText="CustomerID"
                      DataField="CustomerID" SortExpression="CustomerID">
                </asp:BoundField>
                <asp:BoundField HeaderText="CompanyName" DataField="CompanyName"
                     SortExpression="CompanyName"></asp:BoundField>
                <asp:BoundField HeaderText="ContactName" DataField="ContactName"
                     SortExpression="ContactName"></asp:BoundField>
                <asp:BoundField HeaderText="ContactTitle" DataField="ContactTitle"
                     SortExpression="ContactTitle"></asp:BoundField>
                <asp:BoundField HeaderText="Address" DataField="Address"
                     SortExpression="Address"></asp:BoundField>
                <asp:BoundField HeaderText="City" DataField="City"
                     SortExpression="City"></asp:BoundField>
                <asp:BoundField HeaderText="Region" DataField="Region"
                     SortExpression="Region"></asp:BoundField>
                <asp:BoundField HeaderText="PostalCode" DataField="PostalCode"
                     SortExpression="PostalCode"></asp:BoundField>
                <asp:BoundField HeaderText="Country" DataField="Country"
                     SortExpression="Country"></asp:BoundField>
                <asp:BoundField HeaderText="Phone" DataField="Phone"
                     SortExpression="Phone"></asp:BoundField>
                <asp:BoundField HeaderText="Fax" DataField="Fax"
                     SortExpression="Fax"></asp:BoundField>
            </Fields>
            <HeaderStyle ForeColor="White" BackColor="#A55129" 
                Font-Bold="True"></HeaderStyle>
            <EditRowStyle ForeColor="White" BackColor="#738A9C" 
                Font-Bold="True"></EditRowStyle>
        </asp:DetailsView>
        <asp:SqlDataSource ID="SqlDataSource1" runat="server"
             SelectCommand="SELECT * FROM [Customers]" 
             ConnectionString="<%$ ConnectionStrings:AppConnectionString1 %>" />
        <asp:SqlDataSource ID="SqlDataSource2" runat="server" 
             SelectCommand="SELECT * FROM [Customers]"
             InsertCommand="INSERT INTO [Customers] ([CustomerID], [CompanyName],
                 [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], 
                 [Country], [Phone], [Fax]) VALUES (@CustomerID, @CompanyName,
                 @ContactName, @ContactTitle, @Address, @City, @Region, @PostalCode,
                 @Country, @Phone, @Fax)" DeleteCommand="DELETE FROM [Customers] WHERE
                 [CustomerID] = @original_CustomerID"
             FilterExpression="CustomerID='{0}'" 
             ConnectionString="<%$ ConnectionStrings:AppConnectionString1 %>">
             <FilterParameters>
                 <asp:ControlParameter Name="CustomerID" ControlId="GridView1"
                      PropertyName="SelectedValue"></asp:ControlParameter>
             </FilterParameters>
             <InsertParameters>
                 <asp:Parameter Type="String" Name="CustomerID"></asp:Parameter>
                 <asp:Parameter Type="String" Name="CompanyName"></asp:Parameter>
                 <asp:Parameter Type="String" Name="ContactName"></asp:Parameter>
                 <asp:Parameter Type="String" Name="ContactTitle"></asp:Parameter>
                 <asp:Parameter Type="String" Name="Address"></asp:Parameter>
                 <asp:Parameter Type="String" Name="City"></asp:Parameter>
                 <asp:Parameter Type="String" Name="Region"></asp:Parameter>
                 <asp:Parameter Type="String" Name="PostalCode"></asp:Parameter>
                 <asp:Parameter Type="String" Name="Country"></asp:Parameter>
                 <asp:Parameter Type="String" Name="Phone"></asp:Parameter>
                 <asp:Parameter Type="String" Name="Fax"></asp:Parameter>
             </InsertParameters>
        </asp:SqlDataSource>       
    </div>
    </form>
</body>
</html>

File: Web.config

<configuration>
  <appSettings/>
  <connectionStrings>
        <add name="AppConnectionString1" 
             connectionString="Data Source=localhost\SQLEXPRESS;Initial Catalog=Northwind;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

1.Connection to Sql Express (VB.net)
2.Static Sql connection data source (C#)
3.Cache Sql data source (C#)
4.SqlDataSource for Oracle
5.Typical SqlDataSource control generated by Visual Studio
6.Adding the DataSourceMode property to a SqlDataSource control
7.SqlDataSource Simple
8.SqlDataSource Update
9.SqlDataSource Update Stored Procedure
10.SqlDataSource with Parameters
11.Change parameters of SqlDataSource in your own code
12.Executing Inline SQL Statements: SelectCommand, InsertCommand, UpdateCommand, DeleteCommand
13.Programmatically Executing SqlDataSource Commands
14.Executing Insert, Update, and Delete Commands
15.Executing Select Commands
16.SqlDataSource with select command
17.Adding the ConflictDetection property to a SqlDataSource control
18.Detecting concurrency errors after updating data (C#)
19.Detecting concurrency errors after updating data (VB)
20.Filtering SqlDataSource data with a FilterExpression
21.Adding delete functionality to the SqlDataSource Control
22.Adding a section to the SqlDataSource control
23.Adding an UpdateCommand to a SqlDataSource control
24.Adding UpdateParameters to the SqlDataSource control
25.Adding the AutoGenerateEditButton attribute to a SqlDataSource control
26.Executing a Stored Procedure using SqlDataSource Control
27.Handling Null values in the SqlDataSource Control
28.Renaming Parameters passed to a Stored Procedure by handling the SqlDataSource Events
29.Deletion using SqlDataSource Control
30.Programmatically adding a SqlDataSource control to the Page
31.Set sqlCacheDependency