如何使 razor 成为现有项目中的默认视图引擎
我将 MVC 2 项目升级到 MVC 3。如何在现有项目上将默认视图引擎设置为 Razor?
编辑:抱歉,我不太清楚。我希望 Razor 成为“添加视图”对话框中的默认类型。
I upgraded an MVC 2 project to MVC 3. How can I set the default view engine to Razor on an existing project?
Edit: Sorry, I was rather unclear. I want to have Razor be the default type in the Add View dialog.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
简短回答:
更改 global.asax 以同时使用 Webforms 和 razor:
Short answer:
Change in global.asax to use both webforms and razor:
如果您的项目已经至少有一个 Razor 文件或者没有 Aspx 文件(即根本没有视图文件的项目),则“添加视图”对话框应默认为视图引擎组合框中的 Razor 选择。你没有看到这种行为吗?
The Add View dialog should default to a Razor selection in the view engine combobox if your project has at least one Razor file already or if it has no Aspx files (i.e. a project with no view files at all). Are you not seeing that behavior?
有一个MVC3升级工具。
您可以在此处找到该工具和教程:
http://blogs .msdn.com/b/marcinon/archive/2011/01/13/mvc-3-project-upgrade-tool.aspx
当您创建新视图时,您可以选择视图引擎,但我不知道可能性将剃刀设置为默认值。
There is a MVC3 Upgrade tool.
You can find the tool and the tutorial here:
http://blogs.msdn.com/b/marcinon/archive/2011/01/13/mvc-3-project-upgrade-tool.aspx
When you create a new view you can choose the viewengine but i don't know possibilities to set razor like default.