show/hide this revision's text 2 Added code summary

if you are trying to include non-secure content and have control over what is displayed, you could write a handler that takes a url as a parameter.

As the handler is hosted in SSL it can fetch the html, and stream it out back to the browser through SSL. in effect its acting as a small proxy for you.

I've done this for a number of projects in the past to get to files from within a network without exposing the actual network itself.

using the information here: http://www.csharp-station.com/HowTo/HttpWebFetch.aspx you could easily adapt it to take a parameter (the actual url you want to fetch)...

so in your rendered page you would call https://my.domain.com/pages/HttpWebFetch.aspx?url=http%3A//ads.google.com/ the HttpWebFetch.aspx would then retrieve and relay the page content over https thereby removing the secure/insecure warnings.

show/hide this revision's text 1

if you are trying to include non-secure content and have control over what is displayed, you could write a handler that takes a url as a parameter.

As the handler is hosted in SSL it can fetch the html, and stream it out back to the browser through SSL. in effect its acting as a small proxy for you.

I've done this for a number of projects in the past to get to files from within a network without exposing the actual network itself.