First, you have to edit the template by right clicking the dataitem control..
select the Item Templates and add a label control (for example)
select the label control and open its property.. go to databindings
select the custom binding expression.
there you type the code below and click ok:
DataBinder.Eval (Container.Data Item,"Name")
assuming one of your the fields in you table1 is "Name"
First, you have to edit the template by right clicking the dataitem control..
select the Item Templates and add a label control (for example)
select the label control and open its property.. go to databindings
select the custom binding expression.
there you type the code below and click ok:
DataBinder.Eval (Container.Data Item,"Name")
assuming one of your the fields in you table1 is "Name"
Comment