From ca66ee79070269567eb9de455d09d6f1f373466b Mon Sep 17 00:00:00 2001 From: "Kanadily, Esam Abdulmajeed" <40355442+EKanadily@users.noreply.github.com> Date: Mon, 10 Jun 2019 23:05:53 +0300 Subject: [PATCH] Update partial.md (#12746) The sentence "An analogous capability is planned for Razor Pages in ASP.NET Core 2.2" is outdated. --- aspnetcore/mvc/views/partial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/mvc/views/partial.md b/aspnetcore/mvc/views/partial.md index 95e5a222a2..acb19a9620 100644 --- a/aspnetcore/mvc/views/partial.md +++ b/aspnetcore/mvc/views/partial.md @@ -42,7 +42,7 @@ Don't use a partial view where complex rendering logic or code execution is requ A partial view is a *.cshtml* markup file maintained within the *Views* folder (MVC) or *Pages* folder (Razor Pages). -In ASP.NET Core MVC, a controller's is capable of returning either a view or a partial view. An analogous capability is planned for Razor Pages in ASP.NET Core 2.2. In Razor Pages, a can return a . Referencing and rendering partial views is described in the [Reference a partial view](#reference-a-partial-view) section. +In ASP.NET Core MVC, a controller's is capable of returning either a view or a partial view. In Razor Pages, a can return a . Referencing and rendering partial views is described in the [Reference a partial view](#reference-a-partial-view) section. Unlike MVC view or page rendering, a partial view doesn't run *_ViewStart.cshtml*. For more information on *_ViewStart.cshtml*, see .