使用.Net Core 2从代码后面显示模式页面

时间:2018-12-10 15:24:47

标签: c# asp.net-core bootstrap-modal asp.net-core-2.0

我具有检查“索引”页面中错误文件的功能

IList<ErrorImport> ImportErrors = await UpLoadFiche(path);
if (ImportErrors.Count > 0)
{
    return PartialView("~/Views/Fiches/_ResultError.cshtml", ImportErrors);
} 

和模式页面_ResultError.cshtml

<form>
<div class="modal-body form-horizontal">
    <div class="row">
        <div class="col-lg-12">
            <div class="modal-header">
                <h3 class="modal-title" style="text-align:center" id="ModalLabel">Erreur(s) rencontrée(s) lors de l'import de fiche(s)</h3>
            </div>
                <!-- List here -->
            <div class="modal-footer">
                <button type="button" class="btn btn-secondary" onclick="Refresh()">Fermer</button>
            </div>
        </div>
    </div>
</div>
<script type="text/javascript">
    function Refresh() {
        window.location.href = "/Fiches/RefreshPage";
    }
</script>

但是在运行时,“模块”页面以全屏显示,而不是以“模块”的形式显示

我不明白为什么,您能为我提供帮助吗?

0 个答案:

没有答案