I’m working in an ASPX page where intellisense is not functioning. The page compiles and functions correctly – but if I intentionally create a syntax error, instead of placing the message in-line it’s being displayed in the top line – the <%@ Page Title="Stuff" Language="C#"...%>
In the same project, but a different page, everything works as expected.
Declaration:
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Admin.Master" Inherits="System.Web.Mvc.ViewPage<OrderRow>" %>
Accidentally found the condition that was preventing Intellisense:
The original page had a code block:
At one point during my editing I collapsed that whitespace for sake of readability to:
Intellisense highlighting reappeared.