ASP.NET MVC 5 - 폴더 구조 ASP.NET MVC 5 폴더 구조 이번 강의에서, 당신은: 1. ASP.NET MVC 폴더 구조 Before, deep diving into ASP.NET MVC 5, there are certain guidelines that you must follow in order to write MVC code properly and structured. MVC Folder Structure guides you to choose a suitable folder to store different types of files. ASP.NET MVC5를 본격적으로 시작하기 전에, MVC를 적절하고 구조적으로 코딩하기 위해 따라야 하는 가이드라인이 있습니다. MVC 폴더 구조는 다른 종류의 파일을 적합한 폴더에 넣도록 도와줍니다. Solution Explorer 솔루션 탐색기 MVC 폴더 구조 App_Data – LocalDB, .mdf files, xml files 등등의 파일을 포함합니다. App_Start – It contains class files which gets executed when application starts. Normally it is config files like BundleConfig.cs, AuthConfig.cs, FilterConfig.cs etc. 어플리케이션이 시작되었을때 실행되는 클래스 파일을 포함합니다. 보통like BundleConfig.cs, AuthConfig.cs, FilterConfig.cs 등등의 configs 파일입니다. Content – css files, images and icon files 등의 정적인 파일을 포함합니다. Controllers – It contains class files which handle user's request and response. All the controller file name ends...
댓글
댓글 쓰기