ascx和.cshtml有什么区别?

时间:2011-09-08 09:27:19

标签: asp.net-mvc asp.net-mvc-3

我在index.cshtml中有这个:

@{
    ViewBag.Title = "Home Page";
}

@{
    Html.RenderPartial("~/Views/Home/Test.cshtml");
}

这在我的控制器中:

 [ChildActionOnly]
        public ActionResult Test()
        {
            return View();
        }

我无法理解在RenderPartial方法中使用.ascx和.cshtml之间的根本区别是什么?两者都适合我。真正的区别是什么?有人可以解释一下吗?

1 个答案:

答案 0 :(得分:5)

有两种不同的视图引擎可用于asp.net mvc3 Web应用程序。 Razor(.cshtml)和ASPX(* .aspx / * .ascx)。

看一下这篇关于他们差异的帖子:

What is the difference between Razor and ASPX?