I would like to be able to use the ASP.Net Repeater control to create an HTML Table that has three columns and as many rows as necc.
For example if the Data were to
Repeater is not the ideal control to do that. If you're using .NET 3.5 you should use ListView instead. Here's an example that does what you're asking for.
<%# Eval("FullName") %>