Nadav Hury
Nadav Hury

Reputation: 689

VS 2012 Page Inspector console in MVC not working

I have tried page inspector in web forms development and it works fine, But in MVC it opens and in the console area it say's "Javascript Must be enabled in internet explorer" now i'v checked everything and javascript is enabled, Rebooted, Reinstalled, Nothing helps this issue...

working with page inspector should be a refreshing thing since MVC doesnt have a Designer view, Does anyone had this problem?

Upvotes: 1

Views: 1818

Answers (1)

arik
arik

Reputation: 336

I've had the same issue and folowing this steps resolved it:

  1. Enabled JS Debugging in Explorer as the message said and followed by this link: http://support.microsoft.com/gp/howtoscript

  2. added this setting to the web.config at the <appSetting> section

    <add key='PageInspector:ServerCodeMappingSupport' value='Enabled'/>
    

    picked it up from this link: http://msdn.microsoft.com/en-us/library/jj204395.aspx

  3. closed the visual studio and the Developement server

Upvotes: 1

Related Questions