When we install ASP.Net AJAX framework, it installs the System.Web.Extensions.dll into the GAC. To host an ASP.Net AJAX application on a server that does not have ASP.Net AJAX installation, we can copy the System.Web.Extensions.dll and System.Web.Extensions.Design.dll to the bin directory of the application. We can find these dlls in C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025 of our development machine.
Note
To make this work, you have to configure your application to run on "Full Trust". Verify your Web.Config settings for ASP.Net AJAX configurations.
Refer the below link for config settings,
Configuring ASP.NET AJAX
Reference
asp.net ajax forum
|