Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚安装了 Umbraco 6.1.6,确保在开始安装过程之前在 \Config\umbracoSettings.config 文件中有这个设置。
<defaultRenderingEngine>Mvc</defaultRenderingEngine>
该站点安装良好,运行良好,但该站点仍然充满了 .aspx 和 .ascx 文件。是什么赋予了?它不应该为视图、布局和控制器等创建 .cshtml 文件吗?
还是我误解了,这取决于用户输入?
干杯,
——李
umbraco 的某些部分仍将使用用户控件。
尝试创建一个新的文档类型,这将创建一个与该文档类型匹配的视图
您可以通过创建具有相同名称的控制器来推翻默认控制器。记得继承自。
public class NameOfTheDocTypeController : Umbraco.Web.Mvc.SurfaceController