TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About ObjectDataSource
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
John Charles Olamendy (5)
Michael Livshitz (2)
Raj Kumar (1)
Moses Soliman (1)
Amit Patel (1)
Mahadesh Mahalingappa (1)
Kalyan Bandarupalli (1)
Mahesh Chand (1)
Rehaman SK (1)
Related resources for ObjectDataSource
No resource found
Display Data Using ObjectDataSource
2/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 Type
10/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 Form
10/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.5
6/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 - 2
8/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.0
6/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.0
5/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.0
5/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.0
4/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 ObjectDataSource
4/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 Overview
12/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.0
8/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 class
6/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 control
11/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.