Click to See Complete Forum and Search --> : [RESOLVED] Problem with Parent.Frames in FireFox


wagswvu
08-18-2006, 10:57 AM
Frame Set up :
Response.Write("<frame name=""IMC View"" title=""IMC View Frame Doc list"" frameborder=""0"" framespacing=""0"" src=""doclist_ui.aspx?")

Changes Frame URL use JAVA DOM:
Response.Write("parent.frames(""IMC View"").location=""Sendview.aspx?")



The code above seems to work fine in IE but when I try to use Firefox I get an error that Says, " parent.frames is not a function". what would I need to due in order to get this to work for both IE and FireFox.

Logician
08-18-2006, 11:34 AM
Frame Set up :
Response.Write("<frame name=""IMC View"" title=""IMC View Frame Doc list"" frameborder=""0"" framespacing=""0"" src=""doclist_ui.aspx?")

Changes Frame URL use JAVA DOM:
Response.Write("parent.frames(""IMC View"").location=""Sendview.aspx?")



The code above seems to work fine in IE but when I try to use Firefox I get an error that Says, " parent.frames is not a function". what would I need to due in order to get this to work for both IE and FireFox.Use square brackets: parent.frames[...]

wagswvu
08-18-2006, 11:35 AM
Thanks