Anybody???
This has really got me stumped. I'm just trying to
create my own control that has similar functionality to any of the
ASP.NET data controls like the GridView, FormView, etc. The main
difference is that my control is based on a Table. I couldn't use the
Repeater as I have to repeat downwards in columns, and you can only
really use the repeater to repeat sideways in a table, because of the
html syntax:
<tr> <td></td> <td></td> ...repeat... then finally </tr>
I've tried using this custom DataBinder control: http://msdn.microsoft.com/en-us/magazine/cc163505.aspx
...but am currently having trouble getting it to work in a Server Control.
I'm sure it shouldn't be this difficult... I must be missing something very basic, surely? There must be a tutorial out there that explains this... please help!