C Chris Jackson Nov 12, 2003 #2 You can just include an iframe in your page declaratively. If you need to work with it programmatically, you can use the HtmlGenericControl class.
You can just include an iframe in your page declaratively. If you need to work with it programmatically, you can use the HtmlGenericControl class.
M Marcel Balcarek Nov 12, 2003 #3 Thanks Chris and Bruce Barker : here is the code HtmlGenericControl iframe = new HtmlGenericControl("iframe"); iframe.ID = "Id1" iframe.Style.Add("FONT-SIZE", "11px") etc Controls.Add(iframe); Marcel
Thanks Chris and Bruce Barker : here is the code HtmlGenericControl iframe = new HtmlGenericControl("iframe"); iframe.ID = "Id1" iframe.Style.Add("FONT-SIZE", "11px") etc Controls.Add(iframe); Marcel