The URL /Views/Warehouse/WareHouseJavascript.js
is invalid, because you have to make request to controller instead of view.
So you should do following:
- Create controller for Warehouse it is not already exist (I cannot see it on your printscreen)
- Create action method for above view
- In action method return view WareHouseJavascript
- In link use
@Url.Action('Warehouse','Index')
assuming that controller name is Warehouse
nad action is Index
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…