开发者

ASP.Net Postback not working in JQuery Nyromodal popup

I have a Default.aspx page which loads a popup using JQuery Nyromodal popup. Within the popup I have which needs to post开发者_StackOverflowback on clicking the button.

But when I click on the button in the popup window, URL in main window is replaced with popup window URL and also the data in modal popup is not posting back.

Thanks


$(function() 
 {   
     $('#btn_Save').click( function(e)   
     {
          e.preventDefault();
          if (confirm('Submit'))
          {
               $.nyroModalManual({url: 'Add-Support-Staff.aspx' });
          }else
          {
                return false;
          }  
     });

});
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜