Best practices for iframe/page inside app

I have been reading some of the older threads, and I came across one regarding this topic - display a page inside an app. The suggested solution involved an iframe.

Some elements of iframe were deprecated in HTML5.

Anyone have any current info on what is considered the best practice for displaying another page inside of an app? Thank you.

The changes to iframe for HTML were pretty minor. Most of them would be better done in styles anyway.

iframe is still your best bet for displaying a web page in your app - that’s its purpose. You can do it using an HTMLview, but a Container control also works. If you change its HTMLtag property from div to iframe, it becomes a pure iframe element.

1 Like