I have a iframe in asp.net page. The page is secured page (ie., https://www.abcd.com)
I have a button in this page. Onclick of this button we have to display an iframe, inthat iframe display a video from an http:// url (it is actually an another url in internet).
Currently we have tried with the url : http://xyx.com/v.aspx?4343
<iframe width="320" scrolling="no" height="240" frameborder="0" framespacing="0" marginwidth="0" marginheight="0" border="0" allowtransparency="true" style="BACKGROUND-COLOR: transparent;" src="http://xyx.com/v.aspx?4343">
This is giving an error :
Blocked loading mixed active content - http://xyx.com/v.aspx?4343
Can somebody advise how can I load this url in my secured page?
Have tried with the url //xyx.com/v.aspx?4343, however we are getting resource not found 404 error.
please advise..