I am attempting to use an existing MasterPage from a WebForms project and use it with an MVC area added to the same solution.
I've read this blog and I am currently stuck on how to connect the two. I've added the extension methods and all of the items he suggests in the Shared folder.
In his example the Shared/RazorView.aspx file I get two errors on this line.
<% Html.RenderPartial((string) ViewBag._ViewName); %>
`The name 'Html' does not exist in the current context`
`The name 'ViewBag' does not exist in the current context`
How do you reference the MasterPage, or setup the views so you can use the MasterPage as partial content?