I use the following bundle to load css and it works :
bundles.Add(new StyleBundle("~/bundles/jqGrid-styles").Include(
"~/Content/themes/base/jquery-ui.css",
"~/Content/jquery.jqGrid/ui.jqgrid.css"));
...
In my layout page this works :
@Styles.Render("~/bundles/jqGrid-styles")
And if i try simply adding the links to page it doesn't work .
This doesn't work at all:
<link href="~/Content/themes/base/jquery-ui.css" rel="stylesheet" />
<link href="~/Content/jquery.jqGrid/ui.jqgrid.css" rel="stylesheet" />
Can someone explain my why by simply adding the links to the page this doesn't work ? The files are there in the correct location.
.use-