如何使 razor 成为现有项目中的默认视图引擎

发布于 2024-10-19 00:09:30 字数 102 浏览 3 评论 0原文

我将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

痴情换悲伤 2024-10-26 00:09:30

简短回答:

更改 global.asax 以同时使用 Webforms 和 razor:

ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new RazorViewEngine());
ViewEngines.Engines.Add(new WebFormViewEngine());

Short answer:

Change in global.asax to use both webforms and razor:

ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new RazorViewEngine());
ViewEngines.Engines.Add(new WebFormViewEngine());
薄情伤 2024-10-26 00:09:30

如果您的项目已经至少有一个 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?

依 靠 2024-10-26 00:09:30

有一个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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文