Category Archives: Ajax

AJAX with ASP.NET MVC Simplified

What would you do, if you need to update a portion of your web page with the content from the server? Yes, you need Ajax. Let’s get dive into the Asynchronous concept with ASP.NET MVC for some time. How Ajax conquered the web? Whole page gets loaded causing an increased bandwidth Frequent hit on the server… Read More »

Could not load type ‘System.Web.UI.ScriptReferenceBase’ from assembly

While deploying my application on a production server, I was facing the following issue:Exception: System.TypeLoadException Message: Could not load type ‘System.Web.UI.ScriptReferenceBase’ from assembly  ‘System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35’. Stack Trace:    at AjaxControlToolkit.ToolkitScriptManager.OnResolveScriptReference (ScriptReferenceEventArgs e) By looking into above details, it clearly shows that there is some problem in loading AjaxControlToolkit assembly.I did some online search… Read More »

What’s new in jQuery 2.0?

jQuery library has simplified and strengthen web development experience. jQuery lastest version 2.0 doesn’t have a lot of new features but instead jQuery team has provided a number of previous version fixes.

How to register assembly for ASP.NET AjaxControlToolkit?

In order to register assembly for AjaxControlToolkit, we need to follow few basic steps.1. First of all, download and install AjaxControlToolkit. Please follow the link to download @ http://www.asp.net/ajaxlibrary/Download.ashx For Installation, @ http://www.asp.net/ajaxlibrary/act.ashx2. Make the following updates in web.config file.i) Under assemblies tag, add following AjaxControlToolkit assembly <add assembly=”AjaxControlToolkit, Version=3.5.60919.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e”/> ii) Under controls… Read More »