Files
Modbus.Net/Samples/TaskManager/Views/Home/Index.cshtml
2016-11-01 14:25:21 +08:00

30 lines
661 B
Plaintext

@model List<TaskManager.Models.TaskViewModel>
@{
ViewBag.Title = "Task Manager";
}
<table class="table table-hover table-bordered">
<thead>
<tr class="active">
<th>Name</th>
<th>Value</th>
<th>Type</th>
<th>Address</th>
</tr>
</thead>
<tbody>
@foreach (var addressValue in @Model)
{
<tr>
<td>@addressValue.Name</td>
<td id="@addressValue.Id">@addressValue.Value</td>
<td>@addressValue.Type</td>
<td>@addressValue.Address</td>
</tr>
}
</tbody>
</table>
@section scripts{
<script src="~/Scripts/refresh.js"></script>
}