3

我们可以在一个 asp.net mvc 项目中同时使用 Razor 和 ASPX 视图引擎吗?

例如,Controller1 将使用 cshtml 页面 Controller2 将使用 aspx 视图。

或者我们可以动态更改视图引擎类型吗?

4

2 回答 2

6

我相信这篇ASP.NET MVC 博客文章应该会给你你所追求的。

于 2012-08-22T05:20:51.130 回答
0

我在 razor 视图上构建了我的应用程序,所以我的默认视图文件是 Index.cshtml .. 而不是我使用 LIST.aspx 视图,这就是你冷的方式。很容易指定如下

public ActionResult Index() // this is Index Action
{
    var employees = db.Employees.Include("Department");//e => e.
    return View("LIST",employees.ToList()); // syntax this how u can use ASPX.view "LIST" is an ASPX View file in my application. 
}

如果您有错误或任何事情,请告诉我

于 2016-04-08T16:41:34.283 回答