При конфигурации на продакшн сервере возникла ошибка
Unable to cast object of type
'System.Web.Configuration.ScriptingAuthenticationServiceSection' to
type 'System.Web.Configuration.ScriptingAuthenticationServiceSection
проблема связана с тем, что проект был разработан на asp.net 2.0, а на сервере стоит 3.5.
От проблемы избавляет добавление в we.config строк
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="3.5.0.0" newVersion="1.0.61025.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>