_Layout.cshtml
@Scripts.Render("~/bundles/bootstrap") 에서 오류가 남.
BundleConfig.cs에서
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js"));
이 내용에서 Script 삭제
bundles.Add(new Bundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js"));
으로 변경

'coding > asp.net' 카테고리의 다른 글
[asp.net] 느슨하게 결한된 구성요소 작성 (0) | 2022.06.23 |
---|---|
[asp.net] 파일 업로드(db에는 경로만 저장) (0) | 2022.04.28 |
요청 콘텐츠 길이 제한을 초과하는 요청을 거부하도록 요청 필터링 모듈이 구성되어 있습니다. (0) | 2022.04.27 |
[asp.net] MVC 이해 - MVC 패턴 (0) | 2022.04.27 |
[asp.net] MVC 이해- 간단한 RsvpForm 프로젝트 (0) | 2022.04.26 |