Databinding in ASP.NET
Posted
by Victor Hurdugaci
on Stack Overflow
See other posts from Stack Overflow
or by Victor Hurdugaci
Published on 2010-04-07T19:23:38Z
Indexed on
2010/04/07
19:33 UTC
Read the original article
Hit count: 419
ASP.NET
|databinding
Is it possible to do data binding on the fields of an object just like in WPF?
Something like this:
<TextBlock Text="{Binding ElementName=lbColor}" />
just for an asp:TextBox element. What I want is that on submit to have the new values inside the binded object and I don't want to manually read and set the values.
© Stack Overflow or respective owner