Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>In the source code of your page, i see:</p> <pre><code>&lt;img name="ImageFileName" src="https://levelblob.blob.core.windows.net/levelblob/images/slides/b0624213-f3cd-4e0f-b1ae-e5e97429b087.jpg" title=""&gt;&lt;/img&gt; </code></pre> <p>This is not valid img tag as W3C specify:</p> <blockquote> <p>The tag is empty, which means that it contains attributes only, and has no closing tag.</p> </blockquote> <p>BTW, an <code>alt</code> attribute is required by standard, however, no browsers will complain about that.</p> <p>So in your case, you should rewrite all your img tags as follow: <strong>{no '/' at end of img tag and of course no '' closing tag}</strong></p> <pre><code> &lt;img name="ImageFileName" src="..." title="" alt=""&gt; </code></pre> <p>Plus note tip still from W3C:</p> <blockquote> <p>Tip: It is a good practice to specify both the height and width attributes for an image. If these attributes are set, the space required for the image is reserved when the page is loaded. However, without these attributes, the browser does not know the size of the image. The effect will be that the page layout will change during loading (while the images load).</p> </blockquote> <p>Not sure your problem come from something here, but i'm sure that non-valid html can lead in some problems.</p> <p><strong>UPDATE</strong></p> <p>Following your update, i see you are using (asp) to render html. You should try this at end of your function:</p> <pre><code>return MvcHtmlString.Create(tag.ToString(TagRenderMode.StartTag)); </code></pre> <p>PS: i cannot test any asp code.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload