Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

HTML Object / Display webpage Topic is solved

Questions related to using nuBuilder Forte.
Post Reply
toms
Posts: 785
Joined: Sun Oct 14, 2018 11:25 am

HTML Object / Display webpage

Unread post 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>
admin
Site Admin
Posts: 2814
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 25 times

Re: HTML Object / Display webpage

Unread post by admin »

toms,

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

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

Steven
toms
Posts: 785
Joined: Sun Oct 14, 2018 11:25 am

Re: HTML Object / Display webpage

Unread post 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.
admin
Site Admin
Posts: 2814
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 25 times

Re: HTML Object / Display webpage

Unread post by admin »

toms,

Does that mean you have solved your problem?

Steven
toms
Posts: 785
Joined: Sun Oct 14, 2018 11:25 am

Re: HTML Object / Display webpage

Unread post by toms »

Yes I have. Thanks for your support!
admin
Site Admin
Posts: 2814
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 25 times

Re: HTML Object / Display webpage

Unread post by admin »

.
Post Reply