-1
,我有被拋出一個錯誤的部分觀點:缺少結束<tr>標籤
{"Encountered end tag \"tr\" with no matching start tag. Are your start/end tags properly balanced?\r\n"}
我找不到在哪裏標籤未關閉。我花了大量時間試圖找出錯誤,但無濟於事。
我相對積極,它與我在視圖中的代碼元素有關,但我無法查明它。
這是剃刀視圖。
@{
DateTime dateValue;
}
<div class="table-responsive">
<input type="checkbox" class="checkallMaster" />
<table id="reportTable" class="table table-hover table-condensed table-striped">
<thead>
<tr>
<th style="text-align: left;">Variable Investment Option</th>
<th>Unit Value<br /><span style="font-weight: normal;">@Model.Start.ToString("dddd, M/d/yyyy")</span></th>
<th>Start Date</th>
<th>Select Values<br />To Download<br /><input type="checkbox" /></th>
</tr>
</thead>
<tbody>
@foreach (System.Data.DataRow row in Model.Output.Rows)
{
<tr>
<td align="left">@row.ItemArray[1].ToString();</td>
<td align="right" width="50px;">@row.ItemArray[2].ToString();</div></td>
<td align="center">
if (DateTime.TryParse(row.ItemArray[3].ToString(), out dateValue))
{
@Html.Raw(dateValue.ToString("M/d/yyyy"));
}
else
{
@Html.Raw("N/A");
}
</td>
<td align="center"><input type="checkbox" name="FundCodes" value="@row.ItemArray[0].ToString()" class="checkall" /> </td>
</tr>
}
</tbody>
</table>
</div>
那麼,你的問題是什麼? – AbstractDissonance