why we use data bind in asp.net

Answer Posted / prasanth

Data Binding is binding controls to data from databases.
With data binding we can bind a control to a particular
column in a table from the database or we can bind the whole
table to the data grid. Data binding provides simple,
convenient, and powerful way to create a read/write link
between the controls on a form and the data in their application
. Working with Data Binding in ASP.NET is slightly different
to working with it in VB .NET. Generally, Datasets don't
maintain a current record that is displayed in bound
controls. In VB .NET, the BindingContext object handles that
and it lets us set the record bound control display. In
ASP.NET, there is no BindingContext object to handle that.
In ASP.NET, we use a DataView
to let the user select which record should be displayed in
bound controls. We bind the controls using data view and use
the RowFilter property of the data view to select the record
we want the bound control to display. Simply said, in VB
.NET we use the Dataset to bind records to the bound control
and in ASP.NET we use a DataView.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Define html (hypertext markup language)?

531


When did classic asp come out?

547


Define request object?

563


Explain the properties of session object?

495


What process happens behind, when we try to access any page on the internet.

1654






Which is the default scripting language of asp in server-side?

483


What are the tasks performed by <> tags?

501


What is asp format?

498


How do you make it so that code runs when the security system is stopping it?

510


how to add master page in aspx page that is design before master page....

1494


Explain how is method overriding different from overloading?

494


What does active server pages look like?

523


which property will make a control span an entire site office parent class

1926


How can I see what assemblies are installed in the global assembly cache?

538


Describe ways to present an arbitrary endpoint (URL) and route requests to that endpoint to ASP.NET.

3850