如果文本框包含<br>
标记,则条件应为false
@if (!string.IsNullOrEmpty(notificationTextEnrolmentFeeSection))
{
if (notificationTextEnrolmentFeeSection != "<br>") {
<table class="reports-table table-striped table-bordered table-responsive page-break-after-avoid">
<tr class="rowPrint">
<th>
<div class="font-bold letter-spacing">Fee Section</div>
</th>
</tr>
<tbody>
<tr class="rowPrint">
<td>
<div> @Html.Raw(notificationTextEnrolmentFeeSection)</div>
</td>
</tr>
</tbody>
</table>
}
}
答案 0 :(得分:0)
使用contains
功能查找&#39; br&#39;字符串中的标记。
替换
if (notificationTextEnrolmentFeeSection != "<br>")
与
if (notificationTextEnrolmentFeeSection.Contains("<br>") == true)