I am using Bundling for my CSS and use that in my MVC Layout.cshtml
page. The CSS files are included correctly but the icons are not shown properly.
Should i do something to include icons?
MY Bundle code
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/Site.css",
"~/Content/ej/web/ej.widgets.core.min.css",
"~/Content/ej/web/default-theme/ej.theme.min.css",
"~/Content/TodoList.css"));
I am using it in my page as follow
@Styles.Render("~/Content/css")
But i am getting as follow.
Thanks in advance.
Regards, Madhu
I found the reason and the solution for my issue. I provided the virtual path incorrectly. I changed it as follow and now its working fine.