I think Page.User.Identity.IsAuthenticated is available in ASP.NET MVC, because I see other people talking about using it.
However, when I type Page., the intellisense gives me only these 3 options :
CreateHtmlTextWriterFromType Equals ReferenceEquals
What do you think is going on?
EDIT: If I do Page page = new Page()
, then page.User
works. Is it really needed?