摘要:
用视图呈现UI 视图可以不包含任何应用逻辑或者数据库检索代码,所有的应用逻辑都可以在controller中进行处理。 视图通过使用controller类在调用RenderView方法的时候提供视图相关数据对象呈现UI: public void Categories() { List categories = northwind.GetCategories(); RenderView... 阅读全文
摘要:
ASP.NET includes the following types for MVC development: IController. 这个类定义了 controller 类的约定。 Controller. 这是一个controller 基类,提供基本的MVC处理。 Note 要对控制器和控制器action进行安全访问你可以... 阅读全文