Page 1 of 1

HTML Object / Display webpage

Posted: Wed Jan 31, 2018 2:56 pm
by toms
Hi,

How do I display an external webpage in a HTML object? I tried it with a frameset/iframe but nothing is displayed.

Code: Select all

<iframe src="https://www.nusoftware.com"
        width="100%" height="500" frameborder="0">
</iframe>

Code: Select all

<frameset cols="30%, 70%">
<frame src="https://www.nubuilder.com">
<frame src="https://www.nusoftware.com">
</frameset>

Re: HTML Object / Display webpage

Posted: Wed Jan 31, 2018 7:20 pm
by admin
toms,

I don't think you can do it...

https://security.stackexchange.com/ques ... on-iframes

Steven

Re: HTML Object / Display webpage

Posted: Wed Jan 31, 2018 7:56 pm
by toms
Steven,

I was probably not precise enough. It's about embedding a google spreadsheet and I succeeded with this html code:

Code: Select all

<iframe src="https://docs.google.com/spreadsheets/d/e/xxx/pubhtml?gid=0&single=true&widget=false&headers=false&chrome=false" width="450" height="230"></iframe>
Useful info:

If you’re embedding a spreadsheet, change or add the parameters below to show or hide parts of a spreadsheet.

gid=1674242611 - This is the sheet ID.
range=A1:B14 - The range you want to display.
widget=false - If false, there's no sheet tab displayed at the bottom.
headers=false - Row numbers and column letters are not displayed.
chrome=false - Title and footer is not displayed.

Re: HTML Object / Display webpage

Posted: Wed Jan 31, 2018 8:00 pm
by admin
toms,

Does that mean you have solved your problem?

Steven

Re: HTML Object / Display webpage

Posted: Wed Jan 31, 2018 8:14 pm
by toms
Yes I have. Thanks for your support!

Re: HTML Object / Display webpage

Posted: Wed Jan 31, 2018 8:26 pm
by admin
.