I'm developing a project on a Windows 2003 Server, and it seems a known issue exists with enable write permissions on folders, so I had to create a folder above to store images from the browser (C:\Inetpub\blah\)
I created a virtual directory in IIS to point to this folder, hoping to use it as a shortcut in my code to output all images here, but isn't proving to be the case.
<!--#include virtual="/blah/gallery.asp"--> points to the above physical path. The only problem is I can't use IMG tags to retrieve the value since it references the calling template's relative location within the localhost structure.
I was thinking of doing a binary write for each, but that's just murder. Short of storing the images in a database, is there a way to use the virtual include like this?
I created a virtual directory in IIS to point to this folder, hoping to use it as a shortcut in my code to output all images here, but isn't proving to be the case.
<!--#include virtual="/blah/gallery.asp"--> points to the above physical path. The only problem is I can't use IMG tags to retrieve the value since it references the calling template's relative location within the localhost structure.
I was thinking of doing a binary write for each, but that's just murder. Short of storing the images in a database, is there a way to use the virtual include like this?