vote up 0 vote down star

I'd like to know if there's a special way of implementing output caching and using a control from the ajax control toolkit. I keep getting a javascript error on a page with output caching and a tab control that says: ajaxtoolkit (my assembly prefix) is undefined.

This is the directive I added:

<%@ OutputCache Duration="3600" VaryByParam="none" %>
flag

Are you placing this on a user control or a page that inherits from a master page? – cgreeno Mar 19 at 21:32
I'm placing it on a user control. – Raúl Roa Mar 19 at 21:41

2 Answers

vote up 0 vote down

Microsoft does not support output caching in combination with ScriptControls, Extenders, or ScriptManagerProxies that need ScriptReferences. A workaround to the issue is to include the script references these resources require on the main script manager, outside the output cached control.

More info here

link|flag
vote up 0 vote down check

Since the output caching cannot be combined with the generated scripts by the AJAX framework yet (hopefully in a future version some similar behavior will be available crossing fingers), other type of optimization approach has to be made like replacing the ScriptManager for the ToolScriptManager.

http://blog.creonfx.com/performance/howto-optimize-rendering-speed-of-aspnet-ajax-websites

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.