Hi
I run a script daily that generates me an XML file with date in the name ie. (22_11_2003_ErrorLog.xml)
I need a HTML page that when opened will display a drop down box listing the dates in the names of the XML files.
When a specified date has been selected the corresponding XML file should then be opened in the browser.
At the moment I am generating a static HTML file to accompany the corresponding XML which sort of defeats the object!
Here is my current solution:
<html>
<body>
<xml id="cdcat" src="..\XML\23_11_2003_ErrorLog.xml"></xml>
<table border="10" datasrc="#cdcat">
<tr>
<td><span datafld="SERVERNAME"></span></td>
<td><span datafld="ERRORTYPE"></span></td>
<td><span datafld="ERRORCODE"></span></td>
<td><span datafld="ERRORNAME"></span></td>
<td><span datafld="DATE"></span></td>
</tr>
</table>
</body>
</html>
Thanks in advance.
I run a script daily that generates me an XML file with date in the name ie. (22_11_2003_ErrorLog.xml)
I need a HTML page that when opened will display a drop down box listing the dates in the names of the XML files.
When a specified date has been selected the corresponding XML file should then be opened in the browser.
At the moment I am generating a static HTML file to accompany the corresponding XML which sort of defeats the object!
Here is my current solution:
<html>
<body>
<xml id="cdcat" src="..\XML\23_11_2003_ErrorLog.xml"></xml>
<table border="10" datasrc="#cdcat">
<tr>
<td><span datafld="SERVERNAME"></span></td>
<td><span datafld="ERRORTYPE"></span></td>
<td><span datafld="ERRORCODE"></span></td>
<td><span datafld="ERRORNAME"></span></td>
<td><span datafld="DATE"></span></td>
</tr>
</table>
</body>
</html>
Thanks in advance.