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...
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: