该按钮源自用户控件。我想在单击该特定按钮时关联一个弹出窗口。我可以通过单击基本页面上的任何其他按钮来实现此目的,但是由于该特定按钮来自用户控件,因此我无法触发弹出窗口。
$('#btnSendOrder').click(function() {// code here}) // btnSendOrder is from a user control.In this case pop-up is not coming.
$('#btnSendOrder').click(function() { // code here}) // btnSend Order is from the base page itself. In this scenario pop-up comes out.