Dynamic HTML
Dynamic HTML has capabilities for reading from a flat
XML data file, inserting the data into an HTML framework,
and presenting the result.
- DHTML has very limited abilities
to navigate
the tree data structure
- Functionality varies on different browsers.
In general, it only really works on MS IE5.
|
Presenting Content
|
<html>
<head>
<title>Using Data Linking</title>
<xml id="Events" SRC="events7.xml"></xml>
</head>
<body>
<h2>Using Data Linking</h2>
<table datasrc="#Events" cellspacing="2" cellpadding="10"
bgcolor="#eeeeee">
<thead>
<tr bgcolor="#ccffcc">
<th> UW Plays </th>
</tr>
</thead>
<tbody>
<tr bgcolor="#eeffee">
<td>
<span datafld="title"></span>
</td>
</tr>
</tbody>
</table>
</body>
</html>
|
Using Data Linking
|
|
|
 |
|
 |