Hello,
I have the following:
<iframe id="ifUpload" onload="UploadFile()" scrolling="no"
frameborder="0" class="ifUpload" src="FileUpload.aspx"></iframe>
Can I create the content of the iFrame at runtime? Without using
src="FileUpload.aspx"?
Thanks,
Miguel
Eliyahu Goldin - 17 Feb 2008 16:09 GMT
<iframe runat="server" id="ifUpload" onload="UploadFile()" scrolling="no"
frameborder="0" class="ifUpload" >
and in the code behind:
ifUpload.Attributes["src"]="FileUpload.aspx";

Signature
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
> Hello,
>
[quoted text clipped - 9 lines]
>
> Miguel