DataBinding in asp.net 2.0

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello to all,

I want to know if DataBinding in asp.net 2,0 is better than to fill up the
values of the controls of the following form:

this.miControlTextBox.Text = valorParaControlTextbox;

Performance with databinding is good in asp.net 2.0 ? Would you prefer:
databinding or set value to Text property of control ?


In my application Web I have controls that I want set values of entity
object, is not a list of objects, but an object with a series of properties.

I do not know the disadvantages of databinding in asp.net 2.0.

If you could it contributes some good reference or url that explains
databinding and with code examples , I will be very grateful.

Thanks in advance, any helo will be appreciated.
 
Hi,

it's usually that databinding might not perform as well as pure property
setting since databinding always involve late-binding, whereas property
setting is always strongly-typed. However, usually it's not an issue.
 
Back
Top