addy
addy

Reputation: 1215

Error message IE7 "page contains secure and nonsecure items"

my mvc3 application runs on an IIS7 with https encryption. Works fine with every browser, except IE7. Browsing the Application causes on every site a warning message ""page contains secure and nonsecure items" I've traced the traffic with fiddler and wireshark, all connections, ajax requests, assets, files are loaded via https. The generated html source code is exactly the same. (compared with and without the nonsecure items) There are no hardcoded "http://" links in the whole project solutuion.

Any ideas??

Upvotes: 2

Views: 491

Answers (1)

Kevin Junghans
Kevin Junghans

Reputation: 17540

There is a discussion of this specific issue here. Not sure if it your particular problem but it appears IE 7 has an issue when you are manipulating a DOM element, and are setting its style/background property to a incomplete URL.

Upvotes: 1

Related Questions