I have an asp.net application deployed on IIS Server located at 10.0.0.74, when
i tried to access it with chrome browser i get an empty or blank webpage.
However if my colleague tries to access it from his computer he get normal webpage with content on it.
It seems really weird to me what might be the problem.
The screen shot below is what the page looks like.
I would appreciate any help

- 149
- 1
- 13
-
Is it not there on the right by the scroll bar? – RemarkLima May 19 '21 at 19:52
-
It looks like you've got some add-ons/extensions installed that your colleague may not. – pcalkins May 19 '21 at 20:02
-
The right scroll bar is part of the page, in fact it is the only part of the page that is being displayed. – Riley Christian May 19 '21 at 20:02
-
Did you look for JavaScript errors in your console? Did you make sure your browser hasn't cached any old files? – mason May 19 '21 at 20:12
-
1In the console i see a bunch of 404 error. – Riley Christian May 19 '21 at 20:20
-
3Okay...so why are you getting 404's? Are they requesting resources at the right location? Are they requesting wrong resources? Does your colleague have a cached version of those resources but they don't exist anymore? There's quite a bit of investigating you've got to do. – mason May 19 '21 at 20:25
-
You should host those resources locally. You're linking to external resources... (cdns?) That opens up security risks. What may be causing this is partial http/partial https (for linked stuff?) Some browsers block mixed content. – pcalkins May 19 '21 at 22:22
2 Answers
This is not enough to go on, assuming ASP MVC 5 on IIS here are some suggestions.
On your server
Check the following
Is the physical path in IIS correct - actually point to your code?
Do you have any rewrite rules in your
web.config
that could be redirecting?Did you set up the bindings correctly?
Are you hitting the site under https / http?
Checked "Turn windows features on/off" and see if ASP.NET 4.8 installed
Did you setup the HTTP Redirection and HTTP Errors
See how you are setting up error handling setup in your
global.asax
, see here and disable it
Goto your Control panel > Programs and features > Turn Windows features on or off and under "World Wide Web Services
" / components:
Common HTTP features:
Default document
Directory browsing
HTTP Errors
HTTP Redirection
Static Content
Security
Basic authentication
Request filtering
URL Authorization
Windows authentication

- 6,963
- 2
- 26
- 52
The problem was that the plugins in "Content" folder were not included in the projects. I included all the files shown in the image below.
I apologize for wasting your time, i should have checked the console before!

- 149
- 1
- 13