Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I had to download the spark view engine source code (<a href="http://sparkviewengine.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=27600" rel="nofollow noreferrer">http://sparkviewengine.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=27600</a>). Once I did that I went through each of the projects that had a reference to the 1.0 version of System.Web.Mvc assembly and updated to reference to point to System.Web.Mvc 2.0. From there you can build the solution (in visual studio) and you will find that a whole bunch of tests start to fail. You can attempt to fix them (by adding the additional TextWriter parameter you will find is now needed). You will also see that the SparkView.cs file complains about a missing parameter. In the Render method (line 100 of the source code I downloaded) I had to update the instantiation of the wrappedViewContext to look like this (add writer to the end of the list of parameters):</p> <pre><code>public void Render(ViewContext viewContext, TextWriter writer) { var wrappedHttpContext = new HttpContextWrapper(viewContext.HttpContext, this); var wrappedViewContext = new ViewContext( new ControllerContext(wrappedHttpContext, viewContext.RouteData, viewContext.Controller), viewContext.View, viewContext.ViewData, viewContext.TempData, writer); // &lt;-- add the writer to the end of the list of parameters ... } </code></pre> <p>Once the code is updated you can run the build.cmd script that is in the root of the source you downloaded. The build process will create a zip file in the build/dist folder. Take those new dll's and add them to your website. Things should work once again.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload