是否可以使用 Mvc3 razor 脚本 aspx 页面视图?
是否可以在 mvc 2 aspx 页面视图和 mvc 2 ascx 控制视图中使用 Mvc3 razor 脚本?
Is it possible to use Mvc3 razor scripts inside mvc 2 aspx page view and mvc 2 ascx control view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定你在问什么。 “剃刀脚本”是什么意思?你的意思是剃刀部分吗?在这种情况下,那么是的。 aspx 视图可以很好地调用 razor 部分(反之亦然)。
如果您的意思是在 aspx/ascx 中嵌入一大块剃刀,那么不行。
Razor 适用于 MVC 3,但人们已经成功使其在 MVC 2 中工作。例如这个问题: 如何下载 Razor View 引擎
I'm not sure what you are asking. What do you mean by "razor scripts"? Do you mean a razor partial? In that case, then yes. An aspx view can call a razor partial just fine (and vice versa).
If you mean embed a chunk of razor inside of an aspx/ascx, then no.
Razor is intended for MVC 3, but people have successfully gotten it working in MVC 2. Such as this question: How to Download Razor View Engine
简而言之,不可以。您可以同时使用 Razor 和 WebForms 视图引擎,但不能在同一视图中混合使用它们。
此外,据我所知,您也不能将 Razor 与 ASP.NET MVC 2 一起使用,尽管我对最后一个不能 100% 确定。
In short No. You can use Razor and the WebForms view engines alongside each other, but you cannot mix them in the same view.
Besides, as far as I know, you can't use Razor with ASP.NET MVC 2 either although I'm not 100% sure on that last one.