Handling Method Errors : ObjectDataSource « ADO.net Database « ASP.Net






Handling Method Errors


<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<script runat="server">

    protected void srcProducts_Inserted(object sender, ObjectDataSourceStatusEventArgs e)
    {
        if (e.Exception != null)
        {
            e.ExceptionHandled = true;
            lblError.Text = "Could not insert Product";
        }
    }
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
</head>
<body>
    <form id="form1" runat="server">
    <asp:Label
        id="lblError"
        EnableViewState="false"
        CssClass="error"
        Runat="server" />

    <h1>Insert Product</h1>
    <asp:DetailsView
        id="dtlProducts"
        DataSourceID="srcProducts"
        DefaultMode="Insert"
        AutoGenerateInsertButton="true"
        AutoGenerateRows="false"
        CssClass="insertForm"
        GridLines="None"
        Runat="server">
        <Fields>
        <asp:BoundField
            DataField="Title"
            HeaderText="Title:"/>
        <asp:BoundField
            DataField="Director"
            HeaderText="Director:" />
        </Fields>
    </asp:DetailsView>
    <asp:ObjectDataSource
        id="srcProducts"
        TypeName="InsertProduct"
        InsertMethod="Insert"
        Runat="server" 
        OnInserted="srcProducts_Inserted" />

    </div>
    </form>
</body>
</html>

            
File: InsertProduct.cs

using System;
using System.Web;
using System.Data;
using System.Data.SqlClient;
using System.Web.Configuration;

public class InsertProduct
{
    private static readonly string _conString;

    public static SqlDataReader GetProducts()
    {
        SqlConnection con = new SqlConnection(_conString);

        SqlCommand cmd = new SqlCommand();
        cmd.Connection = con;
        cmd.CommandText = "SELECT Id,Title,Director FROM Products";

        con.Open();
        return cmd.ExecuteReader(CommandBehavior.CloseConnection);
     }

     public static void Insert(string title, string director)
     {
         SqlConnection con = new SqlConnection(_conString);

         SqlCommand cmd = new SqlCommand();
         cmd.Connection = con;
         cmd.CommandText = "INSERT Products (Title,Director)" + " VALUES (@Title,@Director)";

         cmd.Parameters.AddWithValue("@Title", title);
         cmd.Parameters.AddWithValue("@Director", director);

         using (con)
         {
             con.Open();
             cmd.ExecuteNonQuery();
         }
     }
     static InsertProduct()
     {
         _conString = WebConfigurationManager.ConnectionStrings["Products"]. ConnectionString;
     }
}


File: Web.config

<configuration>
  <connectionStrings>
    <add name="Products" 
         connectionString="Data Source=.\SQLEXPRESS;
         AttachDbFilename=|DataDirectory|MyDatabase.mdf;Integrated Security=True;User Instance=True" />
  </connectionStrings>
</configuration>

 








Related examples in the same category

1.Binding to a LINQ to SQL Query
2.Binding to a Web Service
3.Using Parameters with the ObjectDataSource Control
4.Using Different Parameter Types
5.Passing Objects as Parameters
6.Filtering Data
7.Handling ObjectDataSource Control Events
8.Handling the Object Creating Event
9.Concurrency and the ObjectDataSource Control, ConflictDetection: CompareAllValues / OverwriteChanges
10.Creating a Custom ObjectDataSource Control
11.Creating Custom Parameter Objects
12.Creating a Page Property Parameter
13.Define your own collection for ObjectDataSource
14.objectdatasource with control parameter
15.GridView with ObjectDataSource
16.ObjectDataSource with selectmethod, deletemethod, updatemethod, insertmethod
17.ObjectDataSource based on XML
18.ObjectDataSource and backend database