Why does this only work with IE? Can you not use classes with Mozilla? Basically all am doing is filling a table with data from a text file. If anyone knows of a better way please tell me.
Thanks
Code:<html> <head> <title>song List</title> </head> <body> <OBJECT id=songs CLASSID="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83"> <PARAM NAME="DataURL" VALUE="songs.ini"> <PARAM NAME="UseHeader" VALUE="True"> </OBJECT> <TABLE datasrc=#songs> <THEAD style="color: #0000cc;"><TR><TD><b>Song Name</TD><TD><b>Artists</TD></TR></THEAD> <TBODY> <TR><TD><B><DIV style="color: #660000;" datafld="Song Name"></DIV></TD> <TD><B><DIV style="color: #660000;" datafld="Artists"></DIV></TD></TR> </TBODY> </TABLE> </body> </html>




Reply With Quote