I have an aspx page with master page and i want to asynchronous update the ContantPlaceHolder
I have an aspx page with master page and i want to asynchronous update the ContantPlaceHolder, i think about apdate panel, when the user submit the actions the update panel will close and open again with the solution, or to use an:
ContentPlaseHolder.Controls.Add(FormView);
I want the content in the place holder will开发者_开发技巧 display the existing aspx page and run its code behind.
Every body have an idea how to do this if its possible? (If it is possible with AJAX is fine)
You can try doing it with jQuery: http://api.jquery.com/jQuery.ajax/
精彩评论