dritterweg
dritterweg

Reputation: 401

Visual Studio ASP .Net MVC Intellisense

the vs 2008 intellisense doesn't work if i use it inside html attribute. example

<form method="post" action="<%= Url.Action %>"

while i'm typing Url.Action the code hint doesn't work, instead it gave me options of files that can be used for the "action" value.

Is it normal that the intellisense doesn't work inside html attribute? or am'i missing something to fix this bug.

Upvotes: 5

Views: 896

Answers (2)

jordanbtucker
jordanbtucker

Reputation: 6078

I just installed Visual Studio 2010 Beta 1 and it doesn't work in this version either. I really hope they fix this before the final release.

Edit: I just installed Visual Studio 2010 Beta 2 and it still doesn't work.

Upvotes: 1

Alex
Alex

Reputation: 77329

I think it's just that way for now. I have the same 'issue' but got used to it.

Tip: If I need Intellisense, I just create a separate <% %> bracket somewhere else temporarily (where Intellisense will work), write the code I need, and then copy it to where I need it.

Upvotes: 2

Related Questions