Follow

Error with Stimulsoft components in MVC

If you get the

Html.Stimulsoft() shows error as System.Web.Mvc..HtmlHelper does not contain any definition for "Stimulsoft"

error, you should add the Stimulsoft.Report.Mvc namespace to the Web.config in Views folder using next code:


  <system.web>
    <pages>
      <namespaces>
        <add namespace="Stimulsoft.Report.Mvc" />
      </namespaces>
    </pages>
  </system.web>

0 Comments

Please sign in to leave a comment.