Related resources for ObjectDataSource
  • Display Data Using ObjectDataSource2/9/2021 9:44:50 AM. This article explains how to use ObjectDataSource and how to get data and display it in a GridView and FormView using an ObjectDataSource.
  • Working with the ObjectDataSource and DateTime Type10/4/2012 9:29:23 AM. This tip will help you to work with the ObjectDataSource, when at least one of the properties of your business object (BO) is type of the DateTime .
  • Building Custom Paging Web Form10/4/2012 7:40:10 AM. Sometimes we may need to build our own data objects instead of using DataSets & DataTables. But in this case, we will lose all paging and sorting facilities that is represented using DataSets & DataTables. To overcome this small issue we'll have to write our own custom paging feature as well as with sorting.
  • Strongly Typed Data Controls Model Binding ASP.NET 4.56/18/2012 4:42:07 PM. In ASP.NET 4.5 Microsoft has integrated the ObjectDataSource control with Data Controls. Microsoft has exposed properties such as SelectMethod, UpdateMethod and DeleteMethod.
  • Designing RIA Applications using Expression Blend - 28/14/2011 12:07:48 PM. In this article let us check out how to bind the listbox to an objectdatasource.
  • Master-detail data-binding using DropDownList in ASP.NET 2.06/9/2009 3:06:37 AM. This article is intended to illustrate how to implement the master-detail presentation pattern using the ObjectDataSource components and DropDownList Web control.
  • Master-detail data-binding using two Web pages in ASP.NET 2.05/14/2009 5:37:12 AM. This article is intended to illustrate how to implement the master-detail presentation pattern using the ObjectDataSource components and two Web pages in ASP.NET 2.0. Master-detail presentation pattern is one of the techniques most used in enterprise applications intended to visualize one-to-many relationships, for example, let’s suppose the following a common business scenario where we want to display a list of subcategories of products, and allow the user select a particular subcategory in order to display the list of associated products.
  • Parameters for ObjectDataSource in ASP.NET 2.05/4/2009 2:09:17 AM. This article is intended to show how to invoke server-side methods (expecting input parameters) stored in the SQL Server 2005 Management System using the ObjectDataSource components.
  • Master-detail data-binding using DropDownList in ASP.NET 2.04/30/2009 11:29:39 PM. This article is intended to illustrate how to implement the master-detail presentation pattern using the ObjectDataSource components and DropDownList Web control.
  • Custom paging in ASP.NET 2.0 and SQL Server 2005 using ObjectDataSource4/14/2009 1:31:19 AM. This article is intended to show how to apply the paging mechanisms in Web applications using ASP.NET 2.0 and SQL Server 2005 as well as using the ObjectDataSource components.
  • ASP.NET ObjectDataSource Control Overview12/4/2008 11:17:08 PM. This post explains how to represent business objects with the ObjectDatasource control. It allows you to bind DataBound controls such as GridView, DetailsView and FormView. It also enables you to separate your business logic and data access logic from presentation layer.
  • Object DataSource in ASP.NET 2.08/8/2008 5:57:25 PM. ObjectDataSource control is one of these new data control added to ADO.NET 2.0. This control is used to bind objects to data-bound controls. In this step by step tutorial, I will discuss how to use ObjectDataSource control in your data-driven Web applications.
  • Using the ObjectDataSource control with the data access class6/18/2007 12:40:19 AM. In this article I will show that how you can use the ObjectDataSource control with the data access class (DA.dll, but it can be one of yours), described earlier, in your Web applications. The examples are written using C# and T-SQL.
  • A guide to ObjectDataSource control11/17/2006 4:38:00 AM. One of the best new features of the forthcoming ASP.NET 2.0 will be the ObjectDataSource control. However, as I found out in my experimentation what seems like a simple control has some complex behaviours to master to get it working properly. If (like me) you have an existing data access layer you may have to make changes to be able to use ObjectDataSource.