Hi, I am using jquery remote tab with asp.net to load my .aspx pages.The problem is if suppose i have a main page called "Parent.aspx" which contains the jquery tab and child page "Page1.aspx" which is loaded via remote tab into the "Parent.aspx".When i click on a server side button on my Page1.aspx, the whole window redirects to the Page1.aspx.I want it to remain on the Paernt.aspx itself.
My Code:
$(function() {
$('#divEmployee').tabs(1, { remote: true });
});
should i add some thing to this, to acheive the above mentioned functionality
Please help.Thanks