I inherited an ASP.NET project, and I'm not sure what the best way to load this in Visual Studio 2008. The client sent me the files, and this is what the file system looks like:
- bin (dir)
- en (dir)
- fr (dir)
- Scripts (dir)
- Web.config
The en directory is a duplicate of the fr directory, with the only difference between them being english text vs. french text in aspx files. So when I tried to build a solution, Visual Studios naturally complained about functions and classes already defined in one of the folders (eg. The type "Control_topnavigtation" already contains a definition for DockXml.....because it's defined in both the en directory and the fr directory).
When I look in all the *.aspx.cs code, I can see statements like:
Header_global.Controls.Add(Page.LoadControl("~/en/Controls/Header_global.ascx"));
Notice the ~/en/ prefix....That leads me to believe the original developer did not create a unique solution for each of en directory and the fr directory. He probably only had one solution to serve the entire project from.
I'm extremely new to .NET, so can someone tell me step by step how to configure visual studio 2008 to reproduce a development environment similar to the previous developer so I can start developing?