我在更新面板中有一个模态弹出窗口。我在该模态弹出窗口上有2个按钮。但是当我点击按钮时,按钮事件不会被激活。我已经提到了更新面板触发器部分中按钮的id。这是我的代码。
<asp:ModalPopupExtender ID="MessageBox" runat="server" TargetControlID="FakeLabel"
PopupControlID="pnl_Message" BackgroundCssClass="modalBackground" OkControlID="Btnok">
</asp:ModalPopupExtender>
<asp:Label ID="FakeLabel" runat="server" />
<asp:Panel ID="pnl_Message" runat="server" CssClass="popup_menu"
BorderWidth="1" Width="40%">
<table width="100%">
<tr>
<td>
<asp:Button ID="btn_cancel" runat="server" Width="38px" OnClick="btn_cancel_Click"></asp:Button>
</td>
</tr>
<tr>
<td>
<asp:Button ID="Btnok" runat="server" Text="OK" Width="38px" OnClick="Btnok_Click" />
</td>
</tr>
</table>
</asp:Panel>
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="Button1" />
<asp:PostBackTrigger ControlID="btn_Update" />
<asp:PostBackTrigger ControlID="btn_Delete" />
<asp:PostBackTrigger ControlID="btn_Clear" />
<asp:PostBackTrigger ControlID="btn_cancel" />
<asp:PostBackTrigger ControlID="Btnok" />
</Triggers>
</asp:UpdatePanel>
cs code:
pnl_Message.Visible = true;
MessageBox.Show();
protected void Btnok_Click(object sender, EventArgs e)
{
try
{
}
catch (Exception ex)
{
lbl_mesg.Text = ex.Message;
}
}
我的btnok事件没有被解雇。我该如何解决这个问题。请帮忙。
答案 0 :(得分:1)
在模态弹出
中添加此属性BehaviorID =“popup”