I have the following view contain a bundle :-
@Scripts.Render("~/bundles/sort")
but when i deploy the view on IIS the script inside the bundle did not fire and when i check the page source i found the following :-
<script src="/bundles/sort?v="></script>
where usully the bundle have a value after the v=" ... can anyone advce what might be the problem ?
the bundle is as follow:-
bundles.Add(new ScriptBundle("~/bundles/sort").Include(
"~/Scripts/sort.js"));
Thanks