In our application, we have 3 different directories on the web app serverwhere a user can select image files to include in a document.
- Their own user directory. The user can upload to this directory.
- A directory specific to the document they are creating or editing. The user can upload to this directory.
- A global directory. The user can only select from this directory; they cannot upload to it.
We would like to be able to allow the users to select one of these directories on the "InsertImage.aspx" dialog using a dropdown list. Is there a way to dynamically change the ImageBrowserDirectory during postback of the InsertImage.aspx page?
Is there an alternative to doing it this way, perhaps by use of 3 different menu buttons on the editor? That would not be our preference, but if it's the only possible way, we'll have to use it.
Bruce