My Setup:
Asp.Net MVC 2, SparkViewEngine w/ WebFormsViewEngine
Problem:
I have the following spark view:
<content name="title">
Home Page
</content>
<h2>Home Page</h2>
<p>
lalalalalalalalalalala.
</p>
#throw new NotImplementedException();
When this page loads I get a YSOD instead of my default shared Error view. Views that use the WebFormsViewEngine redirect correctly if an exception happens. What could I be missing here?