I need to change my co开发者_StackOverflow社区ntentPage to another without any change in MasterPage using updatePanel and JQuery.Can anyone suggest?Am new to Ajax?
Are you just looking to load in the html from another page? Or does the content page which you are wanting to load in have postbacks and dynamic controls on it?
If it is just simple html, then look at the jQuery.get method
$.get('ajax/test.html', function(data) {
$('.result').html(data);
alert('Load was performed.');
});
精彩评论