在灯箱POP-UP中,服务器端功能未调用

时间:2015-10-20 15:10:06

标签: c# jquery asp.net

在POP-UP部分,我有一个查询表单,如果单击“保存”按钮,则不会触发单击(服务器)事件。 请指导我如何调用服务器端事件。以下是代码

灯箱代码;

$(".no-video-btn2").click(function() {
    $(".no-video-popup2").lightbox_me({ centered: true, onLoad: function() { } });
});

asp按钮代码:

<asp:Button id="btnJobTypePopupSave" runat="server" class="select-button" Text="Save" onclick="btnJobTypePopupSave_Click" />

Asp Sever Side Code:

protected void btnJobTypePopupSave_Click(object sender, EventArgs e)
{
}

1 个答案:

答案 0 :(得分:0)

嗨我得到了解决方案,而不是asp按钮使用Link-Button它会起作用,因为如果我们使用asp:Button浏览器视为输入类型,则弹出输入类型不支持。如果您使用Asp:LinkBut​​ton浏览器视为锚。