| Author: Ankush 29 Oct 2008 | Member Level: Silver | Rating:   Points: 3 |
As far as I know,We can embed XML blocks in HTML.These blocks are called XML island.
|
| Author: Saravanan Kanagarasu 29 Oct 2008 | Member Level: Gold | Rating: Points: -20 |
Blocks (called islands) of Extensible Markup Language (XML) embedded in an HTML document. Microsoft Internet Explorer 5.0 and newer versions support embedding the XML data inside HTML pages. This is called XML island. XML data islands can be accessed from client-side scripts or directly to bound to HTML elements.
|
| Author: Swetha 29 Oct 2008 | Member Level: Gold | Rating: Points: -20 |
Blocks (called islands) of Extensible Markup Language (XML) embedded in an HTML document. Microsoft Internet Explorer 5.0 and newer versions support embedding the XML data inside HTML pages. XML data islands can be accessed from client-side scripts or directly to bound to HTML elements.
<xml id="islandTest"><test></test></xml> above is xml island islandTest
|
| Author: Miss Meetu Choudhary 29 Oct 2008 | Member Level: Diamond | Rating:  Points: 2 |
When XML was first gaining acceptance, there was an increasing need to be able to embed "islands" of data inside HTML pages. In Microsoft® Internet Explorer 5.0 and later, these data islands can be written in XML.
http://msdn.microsoft.com/en-us/library/ms766512(VS.85).aspx
http://www.webopedia.com/TERM/X/XML_data_island.html
++ Thanks an Regards Meetu Choudhary
Thanks and Regards Miss Meetu Choudhary (Site Coordinator) Go Green Save Green My Profile on Google
|
| Author: King Cobra 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
Cheers King Cobra Its Too Bad To Be Too Good
|
| Author: Karthik 20 Nov 2008 | Member Level: Gold | Rating:  Points: 6 |
Hi,
An XML data island is XML data embedded into an HTML page.
example:
<html> <body> <xml id="cdcat" src="cd_catalog.xml"></xml> <table border="1" datasrc="#cdcat"> <tr> <td><span datafld="ARTIST"></span></td> <td><span datafld="TITLE"></span></td> </tr> </table> </body> </html>
The datasrc attribute of the <table> tag binds the HTML table to the XML data island.
The <span> tags allow the datafld attribute to refer to the XML element to be displayed. In this case, "ARTIST" and "TITLE". As the XML is read, additional rows are created for each <CD> element.
Regards, Karthik
|
| Author: LOGESHWARAN 13 Feb 2009 | Member Level: Gold | Rating:  Points: 4 |
What is an XML data island? Simply stated it is data in the form of XML embedded in an HTML document. By embedding XML data you create an XML data island, thereby storing your data on the client. This is not good enough. You also want to know how to access it. The HTML elements on the page can be bound to the XML data island and make them come to life, on the client. In reality an XML data island represents a built-in Data Source Object in the IE browser. This means you do not need <object/> tags to embed the control.
refer this link
http://www.devarticles.com/c/a/XML/The-Why-and-How-of-XML-Data-Islands/
REGARDS LOGESHWARAN.P mailto: logesh_ajax@logeshwaran.co.cc
|