I have developed some ASP.NET server controls that include their own javascript and css files. Many of these controls use jQuery extensions, which, as you know, often contain their own css files.
I use Telerik RadScript manager, which integrates javascript as a boss. However, I use the AjaxToolkit ClientCssResource attribute to include css files in my server controls, and I noticed that CSS files are not merged at all. My pages have 10-15 WebResource.axd requests for css files for my server controls.
All I find is just a javascript join, and nothing tells me how I can combine CSS files. Does anyone know if there is a way to combine CSS dynamically (I don't want to combine it manually, since each page can use a different subset of the server controls)?
tster source
share