I am trying to set attributes for an IFRAME html control from the code-behind aspx.cs file.
I came across a post that says you can use FindControl to find the non-as
Try this.
ContentPlaceHolder cplHolder = (ContentPlaceHolder)this.CurrentMaster.FindControl("contentMain");
HtmlControl cpanel= (HtmlControl)cplHolder.FindControl("contentPanel1");