在我的asp.net应用程序中,我使用了使用Jquery的模式弹出窗口。在弹出窗口里面我有asp.net按钮。其中我需要编写用于将数据插入数据库的服务器端代码。但是当我点击按钮模式时,弹出窗口正在关闭。我想在点击按钮时保持模态弹出。 下面是我的HTML代码,
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div class="row route-for-reg">
<div class="routes-container">
<div class="row padding-tb-10">
<div class="col-md-4 col-lg-3">
<asp:DropDownList ID="dpPickupLocation" CssClass="form-control ng-pristine ng-untouched ng-valid ng-valid-required " data-placeholder="Choose pickup point..." runat="server">
<asp:ListItem>as</asp:ListItem>
</asp:DropDownList>
</div>
<div class="col-md-4 col-lg-3">
<asp:DropDownList ID="dpDropLocation" CssClass="form-control ng-pristine ng-untouched ng-valid ng-valid-required" data-placeholder="Choose Hinjewadi drop point..." runat="server"></asp:DropDownList>
</div>
<div class="col-md-6">
<asp:UpdatePanel ID="modalPanel" runat="server"><ContentTemplate>
<asp:Button ID="btnViewRoutes" runat="server" Text="View All Routes" OnClick="btnViewRoutes_Click" CausesValidation="false" />
</ContentTemplate></asp:UpdatePanel>
</div>
</div>
<div id="accordion-resizer" class="row padding-tb-10">
<div id="accordion">
<h3>Pickup</h3>
<div>
<asp:Label ID="lblHolderPickup" runat="server" Text="There are no routes available"></asp:Label>
<asp:GridView ID="gridPickUp" runat="server" CssClass="routes-list"></asp:GridView>
</div>
<h3>Drop</h3>
<div>
<asp:Label ID="lblHolderDrop" runat="server" Text="There are no routes available"></asp:Label>
<asp:GridView ID="gridDrop" runat="server" CssClass="routes-list"></asp:GridView>
</div>
</div>
</div>
<input class="primary-bt" type="button" value="Click to Proceed " />
</div>
</div>
</div>
</div>
</div>
单击按钮时,有没有办法保持弹出窗口关闭它。
提前谢谢你 桑杰塔
答案 0 :(得分:0)
您可以使用以下选项
来实现此目的UpdatePanel
答案 1 :(得分:0)
由于按钮在父页面上,由于回发而导致行为不当,我无法解决问题,但您可以尝试使用所有这些点击事件的内容创建新页面。
在父页面中,
<div class="modal-body">
<iframe style="width: 710px; height: 450px;" id="ifrmChild" src="NewPage.aspx" runat="server" scrolling="yes"></iframe>
</div>
在子页面中,您可以使用按钮控件来显示网格。这是一个普通的aspx页面。但是当关闭并打开弹出窗口时,您应该在子页面中使用parent.FUNCTIONNAME()
调用,就是这样。