Convert A Web Project From ASP.NET 1.1 to 2.0 (2)
3. New Projects
ASP.NET 1.1
- Any type of applications are called project, no matter it is a windows application, or ASP.NET web application, or a control library.
- Default files are created, such as project files, Global.asax, Web.config.
- Solution file is under the same folder.
ASP.NET 2.0
- The term Project refers to a windows application project; ASP.NET web application is called Web Site project.
- No default files are generated if we don’t customize the templates. They have to be manually added. VS2005 has provided templates for these files.
- AppData folder is created. This folder is for db files, configuration setup for Membership and Roles.
- Solution file is under a different folder.