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;
}
});
});
精彩评论