I have the following view code:
@{ Layout = null; } @Html.Raw(ViewBag.ReportHeader as string) @{ Response.Buffer = true; Response.Flush(); } @Html.Raw(ViewBag.ReportBodyAndFoot as string)
In this case, I expected the page title to be displayed first, and then the body with the footer, but the response sent the whole page.
Yara
source share