Render partial view onclick in asp.net mvc 3 project
问题 In my mvc project i have a simple list of items with crud operations like this: <tbody> @{ foreach (var item in Model) { <tr> <td>@item.Title</td> <td>@item.Body</td> <td>@item.Price</td> <td><span class="EditLink ButtonLink" noteid="@item.Id">Edit</span> | <span>@Html.ActionLink("Delete", "Delete", new { id = @item.Id})</span> | @Html.ActionLink("Detalji", "Details", new { id = @item.Id}) </td> </tr> } } </tbody> I am wondering is it possible to render details view as partial under the