Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You don't need to do this on the <code>Page_Load</code>.</p> <p>In your HTML/ASPX you'll have something like the following:</p> <pre><code>&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%"&gt; &lt;param name="source" value="ClientBin/SilverlightApplication1.xap"/&gt; &lt;param name="onerror" value="onSilverlightError" /&gt; &lt;param name="background" value="white" /&gt; &lt;param name="minRuntimeVersion" value="4.0.50826.0" /&gt; &lt;param name="autoUpgrade" value="true" /&gt; &lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=4.0.50826.0" style="text-decoration: none;"&gt; &lt;img src="http://go.microsoft.com/fwlink/?LinkID=161376" alt="Get Microsoft Silverlight" style="border-style: none"/&gt; &lt;/a&gt; &lt;/object&gt; </code></pre> <p>The relevant bit is the the <code>&lt;a href...</code> that is used, when Silverlight isn't present, to allow the user to go and install the plugin.</p> <p>By default this displays the image at <code>http://go.microsoft.com/fwlink/?LinkID=161376</code>:</p> <p><img src="https://i.stack.imgur.com/VSyvQ.png" alt="Install Silverlight image"></p> <p>Replace this by your image that you've designed or captured from a machine that is running your application. This should let the user know that they don't have Silverlight installed and need to install it so a screen shot will have to be modified in some way.</p> <p>For your case of the user viewing the site on an iPhone the screen shot would have to include the fact that iPhone users can't install Silverlight.</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. This table or related slice is empty.
    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