Author: ASP.NET | Posted on: 11/17/2008 2:55:08 AM | Views : 1456

If you have seen Bertrand?s video on Script Combining to improve AJAX performance , you must have really felt like using it in your site to figure out the scripts downloaded in your page and minimizing the size, improving performance etc., Well, this post is just to say that, the ScriptReferenceProfiler is available at CodePlex http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=13356 You need to download the binaries and add it as a reference to your website/project. Once you add the reference, you can add the page directive declaration as below:- %@ Register Assembly="ScriptReferenceProfiler" Namespace="ScriptReferenceProfiler" TagPrefix="cc1" %> and then start using it in your page as below...(read more)Go to the complete details ...