| Author: anoj 06 Oct 2008 | Member Level: Silver | Rating: Points: 2 |
XML Data Island is a Chunk of xml in between HTML content which can act as a data source for some html tags. XML Data Island is Microsoft's implementation and is not supported by chrome and Firefox
|
| Author: karthik 06 Oct 2008 | Member Level: Silver | Rating: Points: 2 |
------------HTML----------- <html> <head> </head> <body> <table cellSpacing="0" cellPadding="0" border = "0" width="100%"> <tr> <td width="10%" > HTML</td> </tr> <tr> <td > <input id="commentsadd" datafld="commentsadd" datasrc="#xmlInfo" style="height: 40px; width: 338px;" /> </td>
</tr> </table>
</body> <xml id='xmlInfo' src='page.xml' async='false'></xml> </html> ------------------------ ------------XML---------- <?xml version="1.0" encoding="utf-8" ?> <Examination> <ExamInfo> <commentsadd>test karthik palani</commentsadd> </ExamInfo> </Examination> ---------------------------
If u place these 2 files in a folder and open the html in Internet explorer 8.. it is not working in IE8 too.. check it out..
|
| Author: Mari raj k 07 Oct 2008 | Member Level: Silver | Rating: Points: 3 |
hi karthik,
hope this can somewhat clear ur doubts regarding XML Data Islands, for further clarification VISIT this link
http://www.w3schools.com/Xml/xml_dont.asp
********************************************************************* internet Explorer - XML Data Islands
What is it? An XML data island is XML data embedded into an HTML page.
Why avoid it? XML Data Islands only works with Internet Explorer browsers.
What to use instead? You should use JavaScript and XML DOM to parse and display XML in HTML. *********************************************************************
|
| Author: Mari raj k 07 Oct 2008 | Member Level: Silver | Rating: Points: 2 |
Hi Karthik ,
There is some article for "Using XML Data Islands in Mozilla" in this link visit this , this might give u some idea,
http://developer.mozilla.org/en/Using_XML_Data_Islands_in_Mozilla
|
| Author: karthik 07 Oct 2008 | Member Level: Silver | Rating: Points: 2 |
but xml island is not working in Internet explorer 8.. Any suggestions to implement it in IE8..
|
| Author: David Billa 13 Nov 2008 | Member Level: Gold | Rating: Points: 4 |
Hi,
View these links, this may give you an idea regarding XML Islands
http://msdn.microsoft.com/en-us/library/ms766512(VS.85).aspx http://www.devarticles.com/c/a/XML/The-Why-and-How-of-XML-Data-Islands/ https://developer.mozilla.org/en/Using_XML_Data_Islands_in_Mozilla
|