I use HtmlExportImagesFolderAlias to specify the image url when saving a document to html format. One thing I noticed is that the url generated is like,
HtmlExportImagesFolderAlias + ‘/’ + UniqueImageFileName
Instead of
HtmlExportImagesFolderAlias + UniqueImageFileName
Is there a way to remove the ‘/’? In my case, I use UniqueImageFileName as a query string parameter instead of a path. So I don’t need ‘/’.
Thanks
-Bin