如果文本框包含<br/>标签,则条件应为false

时间:2018-04-11 10:45:00

标签: c# asp.net-mvc

如果文本框包含<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>
        }
    }

1 个答案:

答案 0 :(得分:0)

使用contains功能查找&#39; br&#39;字符串中的标记。

替换

 if (notificationTextEnrolmentFeeSection != "<br>")

 if (notificationTextEnrolmentFeeSection.Contains("<br>") == true)