VS2010 Intellisense Annoyance...

Soldato
Joined
18 Oct 2002
Posts
16,084
Location
The land of milk & beans
Hey all.

For some strange reason I get no intellisense when in an ASP fragment inside the property of a HTML control - can anyone tell me why/how to fix this?

I've had a quick google but nothing relevant came up.

I know it's not a major issue, but it bugs me all the same having to copy something to another area, check the method signature/types and copy it back in again.

Here's hopefully a better explanation...

Code:
<!-- \/ INTELLISENSE WORKS FINE -->
<%= Url.Action("dashboard") %>

<ul id="main-nav">
  <li>
    <!-- \/ NO INTELLISENSE/TYPEAHEAD -->
    <a href="<%= Url.Action("dashboard") %>" class="nav-top-item no-submenu">Dashboard</a>
  </li>
</ul>
 
Last edited:
Yeah I saw that on the site. The company bought it about 18 months ago. Have to nag for the purse to be opened to buy the latest version now we've upgraded to VS2010.

Cheers guys.
 
Last edited:
Back
Top Bottom