ソースがコードで定義されたページを指している iframe コントロールがあります。Windows 8 ストア アプリで javascript を使用して iframe のコンテンツを保存する方法
var ifrm = document.createElement("IFRAME");
ifrm.setAttribute("src", "http://www.w3schools.com/");
if (ifrm.contentDocument) {
// Firefox, Opera
doc = ifrm.contentDocument;
}
else if (ifrm.contentWindow) {
// Internet Explorer
doc = ifrm.contentWindow.document;
}
else if (ifrm.document) {
// Others?
doc = ifrm.document;
}