Reputation: 689
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
Reputation: 336
I've had the same issue and folowing this steps resolved it:
Enabled JS Debugging in Explorer as the message said and followed by this link: http://support.microsoft.com/gp/howtoscript
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
closed the visual studio and the Developement server
Upvotes: 1