I'm getting an System.Web.HttpCompileException
when the my view calls Html.RederPartial
. The exception message is:
Additional information: External component has thrown an exception.
I've checked that the:
Model
passed by controller and received by the view is the same.InnerException
is nullThe exception sounds like it should be that the html or razor is malformed or incorrect, but the solution builds fine. It was also working not too long ago, so I'm guessing, I'm missing something silly...
My question:
Does anyone know how to know what causes this exception? Or is there a way to get more information on the exception?
Edit: Here's the StackTrace
at System.Web.Compilation.AssemblyBuilder.Compile() at System.Web.Compilation.BuildProvidersCompiler.PerformBuild() at System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean ...
Turns out it was a silly mistake on my part. MVC couldn't compile the Html
from Razor
because I had renamed a property within my Model
, but didn't update it in the .cshtml
.
Turn on Razor Build errors at compile time. Edit your csproj
file and set the following:
<MvcBuildViews>true</MvcBuildViews>
Thanks to JP for this SO post.
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