Open
Description
The Razor parser has a new @page
directive, which is used by Razor Pages.
This means that a Razor page (CSHTML file) with a variable page
can no longer use @page
to render that variable because it is now a reserved word.
To render the variable use @(page)
.