I'm creating my first windows 8 app in metro style. I'm trying to do this with a iframe for runescape.
This is my code :
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Runescape_Metro_Client</title>
<!-- WinJS references -->
<link href="//Microsoft.WinJS.2.0/css/ui-dark.css" rel="stylesheet" />
<script src="//Microsoft.WinJS.2.0/js/base.js"></script>
<!-- Runescape_Metro_Client references -->
<link href="/css/default.css" rel="stylesheet" />
<script src="/js/default.js"></script>
</head>
<body>
<iframe sandbox="allow-scripts" id="Iframe" src="http://www.runescape.com/game" style="width:100%; height:100%"></iframe>
</body>
</html>
and this is the error i get :
APPHOST9625: Kan niet navigeren naar: 'http://www.runescape.com/game'. Een iframe heeft geprobeerd om naar een URI te navigeren die niet is opgenomen in de ApplicationContentUriRules voor deze app. Gebruik in plaats daarvan een x-ms-webview-element om de URI te bekijken of voeg de URI toe aan de ApplicationContentUriRules-sectie van het pakketmanifest, zodat het iframe daarnaartoe kan navigeren. (Voeg in Visual Studio deze URI toe aan het tabblad Content URIs van de Manifest Designer.)
(translated to english with google translate it is:
APPHOST9625: Can not navigate to: http://www.runescape.com/game. An iframe has tried to navigate that is not included in the ApplicationContentUriRules for this app. To a URI Instead, use an x-ms-webview element to see if the URI add the URI to the ApplicationContentUriRules section of the package manifest, so the iframe go there to navigate. (Write in Visual Studio this URI to the Content tab of the Manifest Designer URIs.)
Google didnt help so thats why i am asking it here.