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
why did u choose tech support as ur careears
Explain the difference between sap r/2 and r/3?
Explain how do you box a primitive data type variable?
What is difference between asp and php?
Explain the order of precedence for logical operators.
Explain the post & get method or explain the difference between them in asp?
How to include active x controls in asp code?
Explain the difference between client-side script and server-side script?
What do you mean by asp?
Which is an advantage of application service providers (asps)?
What is active server object model?
What are the stored procedures?
Explain how is method overriding different from overloading?
What is asp and how it works?
Name the control which would you use if you needed to make sure the values in two different controls matched?