【发布时间】:2011-12-28 23:21:04
【问题描述】:
我正在关注 Justin Slattery's Plugin Architecture tutorial 并尝试将其调整为 Razor,而不是 WebForm 视图。
其他一切(控制器、插件程序集加载等)似乎都没问题。但是,我无法让嵌入式 Razor 视图正常工作。当我尝试浏览到“HelloWorld/Index”时,出现以下错误:
The view at '~/Plugins/MyProjectPlugin.dll/MyProjectPlugin.Views.HelloWorld.Index.cshtml' must derive from WebViewPage or WebViewPage<TModel>.
异常是System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) +262抛出的
如果需要,我可以包含完整的堆栈跟踪。
谁能告诉我我可能做错了什么?
【问题讨论】:
标签: asp.net-mvc-3 razor embedded-resource plugin-architecture