Guest User

Guest User

  • Tech Writer
  • 611
  • 127.9k

Set Message Not Record Found.

Oct 5 2020 4:43 AM
<div class="ms-panel-body">
<!--table-->
<div class="table-responsive">
<table class="table table-hover thead-light">
<thead>
<tr>
<th>Date</th>
<th>Game Time</th>
<th>AVG</th>
<th>OBP</th>
<th>Single</th>
<th>Double</th>
<th>Triple</th>
<th>HR</th>
<th>HBP</th>
<th>BB</th>
<th>RBIS</th>
<th>Runs</th>
<th>K Swinging</th>
<th>L Looking</th>
<th>Right or Lefty Pitcher & What At Bat</th>
<th>Lineout</th>
<th>Groundout</th>
<th>Popout</th>
<th>Temperature</th>
</tr>
</thead>
<tbody>
<tbody>
@foreach (var item in @Model.subDetailHittingStats)
{
<tr class="Search">
<td>@Html.DisplayFor(x => item.Date)</td>
<td>@Html.DisplayFor(x => item.GameTime)</td>
<td>@Html.DisplayFor(x => item.Average)</td>
<td>@Html.DisplayFor(x => item.Obp)</td>
<td>@Html.DisplayFor(x => item.Single)</td>
<td>@Html.DisplayFor(x => item.Double)</td>
<td>@Html.DisplayFor(x => item.Triple)</td>
<td>@Html.DisplayFor(x => item.Hr)</td>
<td>@Html.DisplayFor(x => item.Hbp)</td>
<td>@Html.DisplayFor(x => item.Bb)</td>
<td>@Html.DisplayFor(x => item.Rbis)</td>
<td>@Html.DisplayFor(x => item.Runs)</td>
<td>@Html.DisplayFor(x => item.KSwinging)</td>
<td>@Html.DisplayFor(x => item.LLooking)</td>
<td>@Html.DisplayFor(x => item.RightOrLeftyPitcherWhatAtBat)</td>
<td>@Html.DisplayFor(x => item.Lineout)</td>
<td>@Html.DisplayFor(x => item.Groundout)</td>
<td>@Html.DisplayFor(x => item.Popout)</td>
<td>@Html.DisplayFor(x => item.Temperature)</td>
</tr>
}
</tbody>
</table>
 
It's me view code how to set here Message no record found . 

Answers (3)