In my mvc application, In the _Layout.cshtml has code below...
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>@ViewBag.Title - My ASP.NET Application</title>
    @Styles.Render("~/Content/css")
    @Scripts.Render("~/bundles/modernizr")
</head>
But the problem is it says The name 'Scripts' does not exists in the current context.
I have already added the assembly to the reference and to the Bundle config as using System.Web.Optimization;
This happens for @styles also.. What should I do?
Make sure your ~/Views/Web.Config adds the System.Web.Optimization namespace:
<system.web.webPages.razor>
    <pages>
      <namespaces>
        <add namespace="System.Web.Optimization"/>
      </namespaces>
    </pages>
</system.web.webPages.razor>
                        The following in .chtml solves the problem
@using System.Web.Optimization
@Scripts.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
                        Please Follow My Step will Clear this
First
Microsoft.AspNet.Web.Optimisation
App_Start Folder contains a BundleConfig.cs File.<namespaces>
        <add namespace="System.Web.Optimization"/>
      </namespaces>
in Views/web.config FileBundleConfig.RegisterBundles(BundleTable.Bundles); in Global.asax.cs
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With