I'm running a site where users can link images and thumbnails from other sites in their content. When viewing these images in the https secured user are, they are getting security warnings, because http content is contained in the https page..
To work around this, I'd like to route the images through my server to the client, there by "giving" them the required https protokoll.
e.g. when viewing content on the secure site an image tag would like this:
<img src="https://mysite/img.aspx?src=http://url.to/someimage.jpg" >
As my site using Umbraco (.NET 3.5, IIS7), I've already looked into using the urlrewritingnet library, but it only seems to be able to rewrite and redirect urls.
Has anybody done this?