在ASP.NET MVC中使用引导程序创建模式 [英] Creating a modal with bootstrap in ASP.NET MVC

查看:86
本文介绍了在ASP.NET MVC中使用引导程序创建模式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在ASP.NET MVC项目上使用.NET Framework 4.5,Bootstrap v3.3.6.

I'm using .NET Framework 4.5, Bootstrap v3.3.6 on a ASP.NET MVC project.

我想做的是创建一个模态表单

What I want to do is create a modal form

我尝试了以下操作:

  1. 在主布局中创建模式容器

  1. Created a modal container in the main layout

<div id="modal-container" class="modal fade" tabindex="-1" role="dialog" style="border: 5px solid #3A87AD;">
    <a href="#close" title="Close" class="modal-close-btn">x</a>
    <div class="modal-content" style="width:500px !important; margin: 10px auto !important;">
        <div class="modal-body"></div>
    </div>
</div>

  • 添加了js,以进行内部Ajax调用以在部分视图中注入内容

  • Added js to make internal Ajax call to inject content in a partial view

    $(function () {
        $('body').on('click', 'modal-link', function (e) {
            e.preventDefault();
            $(this).attr('data-target', '#modal-container');
            $(this).attr('data-toggle', 'modal');
        });
    
        $('body').on('click', 'modal-close-btn', function() {
            $('modal-container').modal('hide');
        });
    
        $('#modal-container').on('hidden.bs.modal', function(){
            $(this).removeData('bs.modal');
        });
    });
    

  • 创建了要在模式对话框中加载的局部视图

  • Created a partial view that to load in a modal dialog

    <div class=" ">
        <div class="modal-title" style="color: #3A87AD;">
            <h3> Add Content</h3>
        </div>
        <br />
        @using (Html.BeginForm("Create", "Place", FormMethod.Post))
        {
            <div class="row-fluid">
                Enter Content
            </div>
            <div class="row-fluid">
                @Html.textAreaFor(m => m.Text, new { style="width:400px; height:200px;"})
            </div>
            <div class="row-fluid">
                <div class="col-md-4 col-md-offset-4">
                    <button type="submit" id="btnSave" class="btn btn-sm">Save</button>
                    <button type="button" class="btn btn-sm" data-dismiss="modal">Cancel</button>
                </div>
            </div>
        }
    </div>
    <script type="text/javascript">
        $(function () {
            $('#btnSave').click(function () {
                $('#modal-container').modal('hide');
            });
        });
    </script>
    

  • 创建的操作可返回部分视图并处理帖子的结果

  • Created action to return the partial view and to process the results of the post

    public ActionResult CreateModal()
    {
        return PartialView("_CreateModal");
    }
    
    [HttpPost]
    public ActionResult CreateModal(Place model)
    {
        return RedirectToAction("Index");
    }
    

  • 创建了一个操作链接,以在单击时显示模式

  • Created an action link to show the modal when clicked

    @Html.ActionLink("Click me", "CreateModal", "Place", null, new { @class = "img-btn-addcontent modal-link", title = "Add Content" })`
    

  • 我的问题是我的模态看起来不像模态

    推荐答案

    只需将bootstrap.min.js和bootstrap.css添加到您的捆绑包中即可显示/隐藏模式. 您的模态身体应如下所示:

    Simply add bootstrap.min.js and bootstrap.css to Your bundles for showing/hiding modal. Your modal body should look like this:

    <div id="myModal" class="modal fade" role="dialog">
      <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal">&times;</button>
        <h4 class="modal-title">Modal Header</h4>
      </div>
      <div class="modal-body">
        @Html.Partial("My partial View")
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
      </div>
    </div>
    

    `

    然后您通过以下方式调用您的模态:

    and then you call Your modal by:

    <button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Modal</button>
    

    也请记住将局部视图插入到模态主体中.

    Also remember to insert Your partial View into Your modal body.

    这篇关于在ASP.NET MVC中使用引导程序创建模式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

    查看全文
    登录 关闭
    扫码关注1秒登录
    发送“验证码”获取 | 15天全站免登陆