As we know ajax resides between server and client and helps the page's partial rendering...so no need to render all the page controls from scratch....so when we know that some controls requires post back data..we put those control in ajax "update panel" tags...and rest of the non postback enabled controls outside updte panel....
Now we have 6 controls in a web form...2 of them dont need async process..and 4 of them need async process...so we put those 4 controls within a update panel..now these 4 controls requires rendering...rig ht ??
But only one of the controls get changed...so my ques is - all 4 controls goes to server for re-rendering...or only 1 control whose data get changed goes to server for re-rendering ??? And if only 1 control (who is changed) goes to server ..then who renders rest 3 controls Ajax itself by any caching mechanism ..or all 4 controls in update panel goes to server and server async'ly render all 4 controls??
Now we have 6 controls in a web form...2 of them dont need async process..and 4 of them need async process...so we put those 4 controls within a update panel..now these 4 controls requires rendering...rig ht ??
But only one of the controls get changed...so my ques is - all 4 controls goes to server for re-rendering...or only 1 control whose data get changed goes to server for re-rendering ??? And if only 1 control (who is changed) goes to server ..then who renders rest 3 controls Ajax itself by any caching mechanism ..or all 4 controls in update panel goes to server and server async'ly render all 4 controls??
Comment