tree menu - target=<iframe>

Hello,



I’m trying to target an iframe with my tree menu. I searched and saw 2 methods of using HTML within the tree, but neither way is working for me. Here is my menu item:







Here is the body of my html:









    

        

        

    













Any ideas why the target=“contents” won’t work? Thanks!



Robert Lewis

Try to set “name” attribute instead of “id” for the iframe:

<iframe name=“contents” runat=“server” height=“100%” width=“100%”>

That works, although I’m not sure why…I was always under the impression that Javascript preferred ID over name…Oh well, thanks!! :slight_smile:

Robert