- when images are stored outside of the database i think the original image should be kept in a subfolder of images folder (which is where they are currently saved)

eg a folder called 'originals' - much neater that way


        /// <summary>
        /// Gets the local image path
        /// </summary>
        public static string LocalImagePath
        {
            get
            {
                string path = HttpContext.Current.Request.PhysicalApplicationPath + "images\\originals";
                return path;
            }
        }