The page does asynchronous postback, but the ScriptManager.SupportsPartialRendering property is false

How to fix the following exception?

The page runs async postback, but the ScriptManager.SupportsPartialRendering property is set to false. Verify that the property is true during the async postback.

This exception is thrown from Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html).

+5
source share
1 answer

I found this blog post here that talks about a similar issue and mentions the default setting to only take into account 64 characters when caching a user agent:

<browserCaps userAgentCacheKeyLength="64" />

<system.web>, , 64 MSDN.

ASP.NET , , .

+8

All Articles