We have an ASP.net
website, (https://website.example.com
) which is loading external libraries (css
and javascript
) from a different sub-domain name (https://library.example.com
)
The resources we are loading via the library
project are only css files and javascript plugins, which themselves doesn't make any request (via AJAX
).
Testing the website in normal environments, everything works fine.
However, opening it from an Internet Explorer 8
browser, returns an error:
internet explorer has modified this page to prevent cross site scripting
Could the fact that we are referencing external resources cause the error?
If yes, what would be the solution to fix this problem?
I think 90% of the websites downloads references from external domains (like CDN servers) for example.