Hi,following code is for loading a page in current page
$('#profit').click(function (e) {
e.preventDefault();
$('#disp').load("Profit.aspx");
});
the problem is ,in Profit.aspx there is client side paging.but paging is not working.when i run Profit.aspx independly paging is working.
How to solve this problem.
Regards
Baiju