Roger Martin wrote:Sorry - still working through some issues on my recent forum upgrade. Should be fixed now.
Still cant see. Showing a X on the image. Click the image. a screen pop ups showing a loading sign. No image was shown.
i manage to display the path like this.
private string mediaobjectPath = string.Empty;
string modifiedMediaObjectPath = this.mediaobjectPath.TrimStart(new char[] { '/', Path.DirectorySeparatorChar });
modifiedMediaObjectPath = modifiedMediaObjectPath.TrimEnd(new char[] { '\\', Path.DirectorySeparatorChar }).Replace("\\", "/");
if (Request.IsSecureConnection)
{
moVirtualPath.InnerHtml = "https://" + Request.Url.Authority + "/" + modifiedMediaObjectPath + "/" + mediaObject.Original.FileName;
}
else
{
moVirtualPath.InnerHtml = "http://" + Request.Url.Authority + "/" + modifiedMediaObjectPath + "/" + mediaObject.Original.FileName;
}