Home > Net >  why my asp.net website doesnt have any styling in the page inspector
why my asp.net website doesnt have any styling in the page inspector

Time:12-27

I'm learning about SEO (Search engine optimization ) I have a website that I created using asp.net everything works just fine but when I open the page inspector using chrome under network and click on the HTML code I noticed that there is no styling and no images see picture :

picture

can someone please explain what's the reason for that and what I can do about it?

for example if i inspect the source of SO the page is fully loaded with all the css and images SO pciture

I tried to google it and I didn't find anything useful

CodePudding user response:

Devloper Tool Screenshot

Click on the area circled with red on the image to get all of the resources like styling(CSS), images etc. You can also click on the individual CSS or the Image button to only see styling or images.

CodePudding user response:

missing css file? You may go to CSS blade to see the details. Opening F12 window then refresh your page.

enter image description here

  • Related