Using VS\'12, Asp.net - C# - InternetApplication Template, KendoUI, EF Code First
This is my MVC BundleConfig.cs
Try changing
bundles.Add(new StyleBundle("~/Content/kendo").Include(
"~/Content/kendo/kendo.common.*",
"~/Content/kendo/kendo.default.*"));
to
bundles.Add(new StyleBundle("~/bundles/css/kendo").Include(
"~/Content/kendo/kendo.common.*.css",
"~/Content/kendo/kendo.default.*.css"));
and then
@Styles.Render("~/Content/kendo")
to
@Styles.Render("~/bundles/css/kendo")