performance - ASP.net - C# - How to make it run faster ajaxToolkit : ToolkitScriptManager -



performance - ASP.net - C# - How to make it run faster ajaxToolkit : ToolkitScriptManager -

i using ajaxtoolkit website. want create run faster.

asp.net netframework 4.0 - c# - microsoft visual studio 2010

the below config current config. waiting farther suggestions.

<ajaxtoolkit:toolkitscriptmanager runat="server" id="sc1" scriptmode="release" loadscriptsbeforeui="false" enablepartialrendering="true" combinescripts="true" />

to optimize asp.net ajax in our web application, first of all, need create sure compression , caching enabled in web.config:

<system.web.extensions> <scripting> <scriptresourcehandler enablecompression=“true” enablecaching=“true”/> </scripting> </system.web.extensions>

if using asp.net 3.5 sp1, there more powerful tool combining script file – compositescript.

reference : asp.net ajax performance

asp.net performance optimization toolkitscriptmanager

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

c# - Can ProtoBuf-Net deserialize to a flat class? -

javascript - Change element in each JQuery tab to dynamically generated colors -