starbuckinfinity
Programmer
hi. In classic ASP, include files were used for content that would allow you to store content in one file that could simply be "included" in other files that needed the same content. An example would be navigation bars, shared components, etc. I know there are these "server controls" in ASP.NET which are supposed to be similar to include files, but what about files which hold just mainly content things and components that are not functional? Is there anything in ASP.NET that does the equivalent without being for the purpose of building functional components? Or do you just have to put the same code on every page in ASP.NET? With classic ASP, whenever a change needed to be made to, say, a navigation, it was so easy just to open one file and do it in that file. Now, with ASP.NET, if you have to make a change, you would have to open every file that common component was on and make the change if there is no equivalent. Will someone please help me out on this? Thank you.