Learn About the Visual Basic Version of Microsoft’s Exam 70-568
By Certification Magazine —
1 | 2 | 3 |
You should not call the RegisterAsynchronousPostBackControl method of the ScriptManager class. This method instructs a control to always perform an asynchronous post back.
You should not call the RegisterRequiresPostBack method of the Page class. This method instructs the page processor to call methods of the IPostBackDataHandler interface implemented by a control when a page post back occurs. It does not matter whether the post back is a full post back or an asynchronous post back.
You should not call the RegisterRequiresRaiseEvent method of the Page class. This method instructs the page processor to call the RaisePostBackEvent method of the IPostBackEventHandler interface implemented by a control when a page post back occurs. It does not matter whether the post back is a full post back or an asynchronous post back.
References:
ScriptManager Enables AJAX In Your Web Apps
MSDN
http://msdn.microsoft.com/en-us/magazine/cc163354.aspx
ScriptManager.RegisterPostBackControl Method
MSDN
http://msdn.microsoft.com/en-us/library/system.web.ui.scriptmanager.registerpostbackcontrol.aspx
ScriptManager.RegisterAsyncPostBackControl Method
MSDN
http://msdn.microsoft.com/en-us/library/system.web.ui.scriptmanager.registerasyncpostbackcontrol.aspx




