This is the deal...
I have a _one_ web site where one piece of the site (VD1 = virtual directory 1) is secured using SSL and another piece isn't (VD2 = virtual directory 2).
VD1 is using the IE Treeview Web control.
Unless I make virtual directories, I would have to apply the SSL cert to the entire site, which is BAD in my case. With the virtual directory set up, I can apply the SSL cert VD1 and everything is dandy. Users can come in, view the general, unsecured VD2 site as they please, and if they wanna login, the get redirected to VD1 where the SSL connection is initiated.
A bit more on the set up:
My wwwroot is located in C:\Inetpub\wwwroot. (Whoa! that's crazy!)
VD1 is located in a sub-directory of root, here: C:\Inetpub\wwwroot\VD1
VD2 is located in a sub-directory of root, here: C:\Inetpub\wwwroot\VD2
Now the IE Treeview HTML web controls are installed by default in the web site root, in my case here: C:\Inetpub\wwwroot\webctrl_client. We'll call this location WC.
Now herein lies the problem...
The SSL'd web application running in VD1 uses the IE Treeview HTML Control which is installed in a directory _not_ in a subfolder of VD1, for example, not in a directory like C:\Inetpub\wwwroot\VD1\webctrl_client. Remember, VD1 is using the IE Treeview control. The SSL cert successfully encrypts everything within VD1, but since the Treeview control is installed in WC, I get the following message popping up no less than two times every time somebody logs in to VD1:
"This page contains both secure and nonsecure items. Do you want to display the items?"
This message occurs because the app in VD1 is accessing files in WC which do not have the SSL cert applied them.
My question is: How can I can change the default install of the IE Treeview control so that they will be installed into a sub-directory of wwwroot, namely wwwroot\VD1 and _not_ wwwroot\?
With this done, SSL will be applied to all files in the VD1 web app, thus, eliminating the need to retrieve the treeview files located in WC in an unsecured manner, thus getting rid of those annoying popups!
Thanks in advance,
Emory Al-Imam