@model IEnumerable @{ ViewBag.Title = "Index"; }

Index

@using (Html.BeginForm()) {

Find by name: @Html.TextBox("SearchString")  

} @foreach (var item in Model) { }
Name Level Tokens Credits Points Free
@Html.DisplayFor(modelItem => item.Name) @Html.DisplayFor(modelItem => item.Level) @Html.DisplayFor(modelItem => item.SalesPackage.Tokens) @Html.DisplayFor(modelItem => item.SalesPackage.Credits) @Html.DisplayFor(modelItem => item.SalesPackage.Points) @Html.DisplayFor(modelItem => item.SalesPackage.Free) @Html.ActionLink("Refund Accounts", "RefundAccounts", "Skills", new { skillId = item.SkillId }, null) @Html.ActionLink("Edit", "Edit", new { id = item.SkillId }) | @Html.ActionLink("Details", "Details", new { id = item.SkillId }) | @Html.ActionLink("Delete", "Delete", new { id = item.SkillId })