0

I was wondering if theres a way of using controllers for my master pages.

Cheers

4

1 回答 1

3

并不真地。但是您可以为文档类型创建控制器。这可能是你想要做的。

如果你从 Umbraco.Web.Mvc.RenderMvcController 继承一个控制器并适当地命名它,这个控制器将被 Umbraco 自动拾取。在 index 方法中,您可以控制传递给视图的模型。

控制器的命名必须是 DocTypeAliasController。

它在文档中被描述为“自定义控制器”: http: //our.umbraco.org/Documentation/Reference/Templating/Mvc/custom-controllers

如果您使用表单并回发信息,您应该查看 SurfaceControllers: http: //our.umbraco.org/documentation/reference/templating/mvc/surface-controllers

于 2014-01-23T12:53:17.033 回答