将表单重定向到不同的模态对话框VB.Net

时间:2017-03-09 01:54:48

标签: asp.net-mvc vb.net bootstrap-modal html-helper

我有一个带有两个提交按钮的表单。两个按钮都会将表单发送到同一个控制器但不同的模态对话框。这是我的代码。我尝试添加onclick="location.href='#modal1';",但它没有指向 我对话。

<form Class="form-horizontal" role="form" method="get" id="myform" action="@Url.Action("Index", "Home")">
    <div Class="form-group">
        <input type="text" name="day" id="day" Class="form-control">
        <input type="text" name="staff" id="staff" Class="form-control">
    </div>
    <div Class="form-group">
        //this button will redirect to #modal1
        <button type="submit" value="search" class="btn btn-success btn-lg">Yes</button>
        //this button will redirect to #modal2
        <button type="submit" value="search" class="btn btn-success btn-lg">No</button>
    </div>
</form>

我尝试使用它。但是当天有一个错误,工作人员没有宣布。

@Html.ActionLink("Select", "Index", "Home", Nothing, Nothing, "modal1", New With {.day = Day(), .staff = staff}, New With {.class = "btn"})

0 个答案:

没有答案