I am using Asp.Net/C# in my project.Currently I have five pages in my project , for each page I am having a seperate Css file and a .js file.For example:For a page CreateAccount.aspx I have CreateAccount.css and CreateAccount.js.My question to you guys is that how do I manage these stylesheets and .js files when more pages will be added in future , should I persist with my current approach or should I have a single Css and .js file for my entire project.
Any suggestions are welcome.
Thanks
The styles and scripts that pages share should be combined into a single script. Styles and scripts that are unique to an individual page should probably be kept separate.