I have an ASPxImageZoomControl that is showing behavior that I do not understand.
In my codebehind, I set the Image Source Folder and Image Cache Folder dynamically:
zoomNavigator.ImageSourceFolder = "~/Site/Images/item-detail/HB2P";
zoomNavigator.SettingsAutoGeneratedImages.ImageCacheFolder = "~/Site/Images/Thumbnails";
However, when it renders out, the thumbnail is correct, but the main image is broken. Upon further inspection, it has a url of "…/…/…/Site/Images/Thumbnails/5fdf4d2e25b9f2ed10961fdd2b19bfd9/400x250.0/HB2P.png?130880136836921464"
If I remove one of the ellipsis, the URL is correct and the image successfully renders.
Any idea why this is happening?