Reputation: 128
I tried to load this html code onto a Google script:
<iframe src="http://www.w3schools.com"></iframe>
saved the file with the name "page" then used this in the Google script:
function doGet() {
return HtmlService.createHtmlOutputFromFile('page');
}
It views the iframe, but with no content. Am I missing something here?
Upvotes: 3
Views: 861