Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>My guess would be that you have not enabled external navigation for the Silverlight object. If you haven't a security exception will be getting thrown when you click the link, but you may be catching it without knowing. This is described in the remarks section of your above link.</p> <p>To enable navigation edit your Silveright host page (E.G. index.html) and add the following param under the Silverlight object</p> <pre><code>&lt;param name="enableNavigation" value="true" /&gt; </code></pre> <p>By default Silverlight generates the .html page each time you run/debug so you will lose the param. To get around this make a copy of the .html file in the same directory but with a different name or manually specify which .html file to use in the project settings.</p> <p><a href="http://msdn.microsoft.com/en-us/library/dd833071(v=vs.95).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/dd833071(v=vs.95).aspx</a></p> <p>Update:</p> <p>This works for Chrome, Firefox and IE8. It does not work for IE9. You can test this in IE by using the developer tools. Links work with Document Mode IE8 but throw an Unauthorized Access exception when using Document Mode IE9.</p> <p>Update #2:</p> <p>To get it to work in IE9 you can force it to use the IE8 Document Mode. To do this you need to remove the DOCTYPE tag and add a meta tag. E.G.</p> <pre><code>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; &lt;head&gt; &lt;meta http-equiv="x-ua-compatible" content="IE=8"&gt; . . </code></pre> <p>Instead of</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; &lt;head&gt; . . </code></pre>
 

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