Questions tagged [page-inspector]

Page Inspector is a tool that brings browser diagnostics tools into Visual Studio and provides an integrated experience between the browser, ASP.NET, and source code.

Page Inspector is a tool that brings browser diagnostics tools into Visual Studio and provides an integrated experience between the browser, ASP.NET, and source code. Using Page Inspector, elements can be inspected in the integrated browser and it is possible to see exactly which file and lines of code generated that element (HTML literal content and server-side code).

22 questions
87
votes
16 answers

Could not load file or assembly 'Microsoft.VisualStudio.Web.PageInspector.Loader

Could not load file or assembly 'Microsoft.VisualStudio.Web.PageInspector.Loader, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The module was expected to contain an assembly manifest. Assembly…
Miral
  • 5,968
  • 16
  • 57
  • 85
29
votes
4 answers

FileNotFound attempting to load v14.0.0.0 of "Microsoft.VisualStudio.Web.PageInspector.Runtime"

I have an MVC project thats been working perfectly until I updated my machine a week ago. I now receive a Binding Error when trying to run the project Managed Debugging Assistant 'BindingFailure' has detected a problem in 'C:\Program Files…
Zee18
  • 425
  • 2
  • 5
  • 11
6
votes
2 answers

Can Visual Studio Page Inspector cause High CPU issues?

I'm working on a asp.Net MVC 4 application that's on top of a Domain Model Architecture. Everything is fine a part that since a couple of days (upgraded many common packages) when I start the debugging session I can see the CPU getting higher and…
5
votes
1 answer

Visual Studio Page Inspector Assembly not found

I have a ASP MVC Project which I didn't make but I need to upload it on a IIS server. This works but when I upload it and visit the website I get this error: Could not load file or assembly 'Microsoft.VisualStudio.Web.PageInspector.Loader,…
Nanou Ponette
  • 1,372
  • 4
  • 22
  • 46
3
votes
1 answer

Narrowing down what I am scraping from a website using python

I am trying to practice my python scraping for websites but am having trouble narrowing it down to a reasonable size without python not recognizing what I am asking for. For example, here is my code: import bs4 import requests url =…
3
votes
1 answer

Page Inspector doesn't work in Visual Studio Preview 2015

For some odd reason, I can't get Visual Studio Page Inspector to work. There's no option for view under page inspector. Also, the browser link on Chrome doesn't work either. I have VS 2013 installed on the same machine. I tried enabling it in the…
ATL_DEV
  • 9,256
  • 11
  • 60
  • 102
2
votes
1 answer

How to make Page Inspector respect X-UA-Compatible (Compatibility View Mode)?

My team have a legacy project where we use the X-UA-Compatible tag to garantee Internet Explorer render the page in Compatibility View Mode since we need to support IE7 and beyong. It…
Vitor Canova
  • 3,918
  • 5
  • 31
  • 55
2
votes
0 answers

How to view pages that require log in with Visual Studio 2012 Page Inspector?

Page Inspector does not open files that require log in. -VS 2012 Ultimate. -MVC 4. -browser set to IE v10 -project is set to debug All pages that do not require log in work fine. Pages that do require log in open on the log in page. Logging in takes…
StephenC
  • 161
  • 2
  • 14
2
votes
0 answers

No mapping data was returned from the server in Visual Studio Page Inspector

To debug my web app, I need to run it on a specific domain. To do this I've created domain mappings in my hosts file, all mapping to 127.0.0.1. My site runs in my local IIS 8. But when I try to run Page Inspector on the app, I get an error stating…
Graffen
  • 213
  • 3
  • 7
2
votes
0 answers

Can I disable browser cache in Visual Studio 2012 Page Inspector?

I am trying to update a LESS file but when I refresh the rendered page in Page Inspector in Visual Studio 2012 it doesn't load my changes. If I open the same page in Internet Explorer and press Ctrl + F5 Internet Explorer will load my changes, then…
Blegger
  • 4,272
  • 4
  • 30
  • 36
1
vote
0 answers

Why does Page Inspector display unwanted <$A$> tags

I'm using the page inspector debugger in Visual Studio to compete a tutorial on how to use jQuery to display a dialog showing a line of text and a dropdownlist. In Page Inspector it appears with random , tags around the elements as shown This…
Jonnus
  • 2,988
  • 2
  • 24
  • 33
1
vote
1 answer

VS2012 Page Inspector ignoring text-shadow style

I'm having in issue in VS2012 where page inspector appears to be ignoring the css directive: text-shadow: 2px 2px 5px #aaaaaa; This is part of a style as follows: h1 { font-size: 56px; text-shadow: 2px 2px 5px #aaaaaa; text-indent:…
Rich Freeman
  • 1,009
  • 2
  • 9
  • 22
1
vote
1 answer

No mapping data was returned from the server after installing ASP.NET and Web Tools 2012.2 Update

Went to http://weblogs.asp.net/scottgu/archive/2013/02/18/announcing-release-of-asp-net-and-web-tools-2012-2-update.aspx, downloaded and successfully installed the update but now when I try to view my site in page inspector it tells me "No mapping…
PussInBoots
  • 11,028
  • 9
  • 52
  • 84
0
votes
1 answer

Python: Scrape all of the names of the officeholders in the tables being referenced in a list of urls

I am trying to get python to give me the names of State Senators and Represenatives on Ballotpedia. However, the code I put together is only giving me the title I requested from the url but I am not getting any names. Here is my current python…
0
votes
2 answers

How can I fix this python code to get all of the names of the people in the table I am referencing in the code?

I am trying to get python to give me the names of the State Senators from Alabama on Ballotpedia. However, the code I put together is only giving me the title I requested from the url but I am not getting any names. Here is my current python…
1
2