What do you mean by "using XML as a source"? What is this XML source?
There is no HTML syntax to "retrieve" data from somewhere, that's not
something that HTML does. You could probably do this with Javascript.
Oli
Inside the <head> tag I reference my XML source
<xml id="Main" src="../../xml/Main.xml"></xml>
Here I call the Office tag I created in the XML source
<table width="90%" cellpadding="5" align="center" datasrc="#Main">
<tr>
<td colspan="2"><h2><span class="celltext"
datafld="Office"></span> Computer Trouble Ticket</h2></td>
</tr>
I'd like to replace the e-mail addresses in the following line of HTML with
references to the XML
<form
action="mailto:
[email protected]?&
[email protected]&subject=Computer Help
Ticket" method="post" enctype="text/plain" >
My users are on stand alone systems on .com broadband connections in 1 man
offices over several states. There is no server for them to use. A stand
alone .chm help file is capable of supporting just about any Web Page
feature. Do a search on your PC (if Windows) and you will find many examples
of .chm files. My users will have my companys .chm file on their desktop,
and one of the options is an HTML form that they use to submit trouble
tickets. The feature works fine, however it has become neccesary to make it
more generic. So we have have moved all direct references to our divison to
an XML file, so that other System Admins only have to edit one file (the
..XML) to customize the CHM to their division. I understand fully that IF i
was hosting a web page then I wouldn't want to use MAILTO, but please that
is not the question. I am looking for help with an XML data island and the
subsequent HTML syntax