将stimulsoft集成到MVC4应用程序中

时间:2015-04-23 14:06:30

标签: asp.net-mvc asp.net-mvc-4 razor stimulsoft

我正在尝试将stimulsoft设计器集成到我的Web应用程序(MVC4,Razor 2和Entity Framework 4)中,但我已经解决了一些问题。

我已经集成了dll和程序集,但是我有这个错误:

指数超出范围。必须是非负数且小于集合的大小。 参数名称:index 描述:执行当前Web请求期间发生未处理的异常。请查看堆栈跟踪,以获取有关错误及其在代码中的起源位置的更多信息。

异常详细信息:System.ArgumentOutOfRangeException:索引超出范围。必须是非负数且小于集合的大小。 参数名称:index

源错误:@ Html.Stimulsoft()。StiMvcViewer(新的StiMvcViewerOptions(){

1 个答案:

答案 0 :(得分:1)

通过在Web.Config文件中进行以下更改来解决问题:

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="2.0.0.0" newVersion="4.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>