Hello
For ListControl like Grid, repeater, Combobox, it's easy but it's not my question.
I speak about
Web Page detail with a lot of TextBox. like this. (150 controls)
<
asp:TextBox
runat
=
"server"
ID
=
"txt_us_name"
BusinessObjectName
=
"oUserBo"
BindingField
=
"us_name"
MaxLength
=
"35"
></
asp:TextBox
>
With this property BusinessObjectName and BindingField
If i load my WebPage
Var oUserBo = (MyLinq Queries).ToList();
oUserBo.BindToControl(); // all textbox, comboxbox , raddatepicker get their Value or Content : Ok ?
And if i Save !
this.oUserBo.GetValueFromControl();
this.DbContext.SaveChanges();
Imagine all time i win, with 1 method to Get all value from my textbox to store in my Entity BusinessObject ?
In all your sample, you don't Have a sample with a WebForm detail view with textbox, and sample with telerik data access !
thanks
Olivier