Included in the Editor is an Asset Manager add-on. Using the Asset Manager add-on, you can browse and manage your web assets (upload and delete files, create and delete folders). Asset Manager add-on is located in folder assetmanager. The main file is assetmanager.asp. To enable the Asset Manager add-on:
If you enable the Asset Manager add-on, these dialogs will automatically show a Browse button :
The Browse button will open the Asset Manager add-on dialog so that you can select a file which can be inserted as hyperlink or object (image, flash, video, etc).
Asset Manager add-on allows you to specify more than one base/root folder (up to 4). Here are example settings in seetings.asp :
arrBaseFolder(0)="/assets/"
arrBaseName(0)="Assets"
arrBaseFolder(1)="/public_assets/"
arrBaseName(1)="Public Assets"
If required, you can localize the Asset Manager add-on to be displayed in specific language by setting the lang variable in querystring:
<editor:wysiwygeditor
Runat="server"
scriptPath="scripts/"
AssetManager="/assetmanager/assetmanager.asp?lang=german"
AssetManagerWidth="600"
AssetManagerHeight="445"
ID="oEdit1" />
The current available values lang variable are: danish, dutch, finnish, french, german, schi (Chinese Simplified), tchi (Chinese Traditional), norwegian, spanish, swedish. If lang variable is not specified, English version will be displayed.
The Asset Manager dialog will return the selected file url in the form of 'relative to root' path, for example:
/assets/image.gif
If required, it can be changed to return absolute path by setting bReturnAbsolute variable in seetings.asp to true:
bReturnAbsolute=true
This will make the Asset Manager dialog returns:
http://yourservername/assets/image.gif
Inserting images using absolute path usually is required if you use the Editor in web-based email applications.