0

I have image handler working fine on HTTP. But The same page when access using https its not showing up the image. When check browser console for errors its showing "ERR_INSECURE_RESPONSE".

siddu
  • 1

1 Answers1

0

This usually occurs when you try to load content from http site into https site. This results into Mixed-Content error.

On http page you can load contents from http or https both but when you are on https site then you can load contents like images or iframe only from https sites.

In this case i assume that the site which is sending request is on https but your ashx page is on http site.

Abhishek Maurya
  • 321
  • 1
  • 3
  • 13