How to include js files in the view. ASP.NET MVC 4

后端 未结 5 2103
迷失自我
迷失自我 2020-12-03 13:57

I wonder why my js file work when I call it in the view:

@section Scripts {  


        
5条回答
  •  自闭症患者
    2020-12-03 14:28

    It's because .js files are not accessible in the ~/Views/ folder. You have to enable it.

    To enable access to .js files in the Views folder, you can add the following to your Views' folder's web.config directly under the handlers tag:

    
    

    Alternatively put your script into the ~/Scripts/ folder and reference it like such:

    @Scripts.Render("~/Scripts/script.js")
    

提交回复
热议问题