I'm right now using asp.net mvc 2.0 in my projects. I like the way asp.net mvc is designed and works, but i feel it lack good support for applications with a large amount of styles and scripts.
In order to isolate different parts of an application i use areas, child only actions and partials. I would like a standard way to separate my scripts and styles too, i.e. put my script and style files in an area (not in the script and content folder on the root) and good way of including them on pages where they belong.
Right now I'm using a content place holder on every page in which I can include any script and styles for that action, but I would like a way of including a script from e.g. child only action.
What are your thoughts on this, how do you manage your script and style files, are there any patterns or best practices?