Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Blog
Index.cshtml
@model IEnumerable<ZooFirst.Models.Support> <h2>Horror</h2> <table class="table"> <tr> @*<th> @Html.DisplayNameFor(model => model.SupportId) </th>*@ <th> @Html.DisplayNameFor(model => model.Name) </th> <th> @Html.DisplayNameFor(model => model.Summary) </th> <th></th> </tr> @foreach (var support in Model) { <tr> @*<td> @Html.DisplayFor(modelItem => support.SupportId) </td>*@ <td> @Html.DisplayFor(modelItem => support.Name) </td> <td> @Html.DisplayFor(modelItem => support.Summary) </td> </tr> <tr> @foreach (var fileDetail in support.FileDetails) { @*<td> @Html.DisplayFor(modelItem => fileDetail.Id) </td> <td> @Html.DisplayFor(modelItem => fileDetail.FileName) </td> <td> @Html.DisplayFor(modelItem => fileDetail.Extension) </td>*@ <td> <img src="/Support/Download/?p=@(fileDetail.Id + fileDetail.Extension)&d=@fileDetail.FileName" width="150" height="84"> </td> <td> @Html.ActionLink("Change", "Edit", "Support", new { id = support.SupportId }, null) </td> } </tr> } </table>
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Possible Maximum
15
Volatile madness
Func
code
בדיקה כמה פעמים מערך אחד כלול במערך אחר
list copy test
pointer
sortowania przez wstawienie Correct
linked list (add to end and beginning, and looking for cycles based on Floyd's algorithm)
Please log in to post a comment.