David_Wimbley
Основным примером может быть
действие контроллера
public ActionResult Index()
{
var data = //some method to get your data to display
return View(data);
}
Вид - Индекс.cshtml по
@model IEnumerable<your_data_model_or_entity_class_here>
<table>
<thead>
<tr>
<th>Your Column Header Name</th>
</tr>
</thead>
<tbody>
@foreach(var item in Model)
{
<tr>
<td>
<!-- Do something here to display your items in table format (or whatever format you want with as many columns you want -->
</td>
</tr>
}
</tbody>
<table>
</table></table></your_data_model_or_entity_class_here>
Но, как и сказал sitecore, изучение MVC было бы лучше всего, следуя учебникам, которые лучше объясняют подобные проблемы более подробно, чем этот пост.