If you're getting full postbacks with ASP.NET AJAX and EPiServer 4.62
After having 1) referenced System.Web.Extensions and 2) added all the necessary entries to web.config, we still got full postbacks when submitting through an UpdatePanel in an EPiServer 4.62 website.
The solution
As it turns out, the culprit was the xhtmlConformance tag in web.config. EPiServer has the following entry in web.config by default:
<xhtmlConformance mode="Legacy"/>
I'm suspecting this has to do with the EPiServer UI. Anyways, we simply commented out the xhtmlConformance tag in web.config and now it all works as if by magic:
<!-- <xhtmlConformance mode="Legacy"/> -->
This may have some implications in the EPiServer UI, but we have yet to find any?
07 February 2008