Server framework, there is a collection of server controls and services that extend the ASP.NET 2.0 framework. These are commonly known as server extensions.
They include support for localization, globalization, debugging, tracing, web services, and application services and are essentially meant for reducing the roundtrips to the web server and providing incremental updates. The ASP.NET Ajax server extensions framework includes the following:
You can group the ASP.NET Ajax server controls into two distinct groups: Script Management and Partial Update.
The Script Management Group
The Partial Update Group
The Application Services Bridge
The application services bridge is an API that enables the different application services like authentication and profile management to be invoked from the client-side script.
The Web Services Bridge
The web services bridge is an API that provides access to external web services from the client-side script. You have JavaScript proxies available to access these web services.
Both of these bridges are responsible for asynchronous communication support.
They include support for localization, globalization, debugging, tracing, web services, and application services and are essentially meant for reducing the roundtrips to the web server and providing incremental updates. The ASP.NET Ajax server extensions framework includes the following:
- ASP.NET Ajax server controls
- Application services bridge
- Web services bridge
You can group the ASP.NET Ajax server controls into two distinct groups: Script Management and Partial Update.
The Script Management Group
- ScriptManager
- ScriptManagerProxy
The Partial Update Group
- UpdatePanel
- UpdateProgress
- Timer
The Application Services Bridge
The application services bridge is an API that enables the different application services like authentication and profile management to be invoked from the client-side script.
The Web Services Bridge
The web services bridge is an API that provides access to external web services from the client-side script. You have JavaScript proxies available to access these web services.
Both of these bridges are responsible for asynchronous communication support.