Jquery – ASP.Net Postback not working in JQuery Nyromodal popup

asp.netjquerynyromodalpostback

I have a Default.aspx page which loads a popup using JQuery Nyromodal popup.
Within the popup I have which needs to postback 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

Best Answer

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

});