如何在asp.net中的ajax modelpopup中添加两个按钮?

时间:2014-05-09 12:16:07

标签: c# jquery asp.net ajax

我在这里使用两个按钮,一个保存,另一个保存。

当我单击“保存”按钮时,它不会触发事件,但会出现弹出窗口。 请告诉我怎么做?

cc1:modalpopupextender ID="mp1" runat="server" PopupControlID="Panl1" TargetControlID="btnnewcategory"  BehaviorID="btnsave"
    CancelControlID="btnclose" BackgroundCssClass="Background"
cc1:modalpopupextender

1 个答案:

答案 0 :(得分:0)

试试这个..添加一个隐藏的按钮..

<asp:Button ID="btnShowPopup" runat="server"  style="display:none" />

添加模式popupextender ..

 <asp:ModalPopupExtender ID="brandaddpopup" runat="server" DynamicServicePath="" Enabled="True" TargetControlID="btnShowPopup" CancelControlID="btnclose" Drag="true" PopupControlID="Panl1" >
</asp:ModalPopupExtender>

代码背后:

 protected void btnSave_Click(object sender, EventArgs e)
 {
     //Saving Process goes here
     this.mp1.Show();
 }