Author: atconway | Posted on: 6/5/2008 12:54:57 PM | Views : 1134

I have an ASP.NET page that is secured via SSL and is accessed by https:\\Mysite\Default.aspx

The problem is there are images on the page that I guess are pulled off of our Domain insecurely.  This causes the following message to be displayed to the end user:

 "This page contains both secure and nonsecure items. Do you want to display the nonsecure items?"

If yes is selected, the images appear.  If no is selected, the images show up as broken links.  I think I could bypass this if I copy all of the images to a local directory in my project, but I do not want to do this.  This will defeat the purpose of having a centeralized location to access them on the domain.

The code to populate the image is as follows:

 imageCtrl1.ImageURL = \\MyDomain\Images\Image1.jpg

 Is there a way to access these securely so the message is suppresed or do I need to copy all of the images to my proj ...

Go to the complete details ...