Bug fix:Strings are now encoded before sent to the server, although there are still some problems with unicode characters.
Change:Instead of having to Register the custom Type converters they are now placed in the "ajax" section of web.config. The benifits are that converters can be updated with out having to recompile the whole project. The ajax.js file has been updated so this will have to be replaced.
download AJAX for APS.Net
Using:
within <configuration> add the following
<configSections>
<section name="ajax" type="Ajax.AjaxConfigurationSectionHandler, Ajax" />
</configSections>
and then add each of the converters as below
<ajax>
<add type="Full Type Name, Assembly Name" />
<add type="Ajax.Web.DataTableConverter, Ajax.Web" />
</ajax>