Hi,
I have an iframe
<iframe id="idDial01" src ="Guage.aspx" runat="server">
<p>Your browser does not support iframes.</p>
</iframe>
From codebehind, I can get reference of that iframe
HtmlControls.HtmlGenericControl c3 = (HtmlGenericControl )this.FindControl("idDial01");
How can I cast that HtmlGenericControl back to my Guage class object? [public partial class Guage : System.Web.UI.Page]
Let me know if you want more info from me.
Thanks,
R