Xojo cgi webapp in and Iframe?

Im sorry I cant find the thread hat resolved this. can we or cant we use a xojo app in an iframe. I thought there was some security setting that was added last year to allow this but for the life of me I cant find reference to it.
Thanks to anyone that can point me in the right direction.

This is taken from a post from Greg O’Lone :

[code]// Allow your app to show up in any iframe
self.Security.FrameEmbedding = WebAppSecurityOptions.FrameOptions.Allow

// DON’T allow your app to be shown in an iFrame
self.Security.FrameEmbedding = WebAppSecurityOptions.FrameOptions.Deny

// Only allow your app to be shown in an iFrame if the domains match = DEFAULT
self.Security.FrameEmbedding = WebAppSecurityOptions.FrameOptions.SameOrigin

To get the behavior to be like the previous versions of the IDE, you need to set it to
WebAppSecurityOptions.FrameOptions.Allow.[/code]

See http://documentation.xojo.com/index.php/WebApplication.Security

ok so I actually missed the obvious
sorry to be a pain in ass
thanks

[quote=159434:@James Nicholson-Plank]ok so I actually missed the obvious
sorry to be a pain in ass
thanks[/quote]

Your are not a pain, this setting was not that much publicized :wink: