Curtis
Curtis

Reputation: 103428

ASP.NET Markup Intellisense not working in Visual Studio 2010

When I type < in the Markup Mode of Visual Studio 2010, I don't get any server-side controls (ie. <asp:textbox />), I just get a list of standard HTML controls.

This used to work, but one day just stopped.

Why could this be?

P.S: I'm a VB.NET Programmer, and intellisense is working fine in the .vb files.

Upvotes: 6

Views: 6752

Answers (2)

GHP
GHP

Reputation: 3231

Navigate here: C:\Users\USERNAME\AppData\Roaming\Microsoft\VisualStudio

And delete the contents of the folder labeled '10.0'. This worked for me.

Upvotes: 20

BlueCode
BlueCode

Reputation: 741

  • Check file extension - editor bindings in preferences.
  • Check the system.web\pages\controls config section in your web configuration file.
  • Check the system.web\compilation\assemblies section too.

Upvotes: -1

Related Questions