Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Link in xml

Status
Not open for further replies.
Feb 26, 2011
3
0
0
CA
Hi
I have this xml page and I would like to have a link to appear in on of the boxes
For example a link from this adress


<!-- File Name: Inventory Big Table.htm -->

<HTML>

<HEAD>
<TITLE>Book Inventory</TITLE>
</HEAD>

<BODY>

<XML ID="dsoInventory" SRC="Inventory Big.xml"></XML>

<H2>Book Inventory</H2>

<BUTTON ONCLICK="InventoryTable.firstPage()">
|&lt; First Page
</BUTTON>
&nbsp;&nbsp;
<BUTTON ONCLICK="InventoryTable.previousPage()">
&lt; Previous Page
</BUTTON>
&nbsp;&nbsp;
<BUTTON ONCLICK="InventoryTable.nextPage()">
Next Page &gt;
</BUTTON>
&nbsp;&nbsp;
<BUTTON ONCLICK="InventoryTable.lastPage()">
Last Page &gt;|
</BUTTON>
<p>

<TABLE ID="InventoryTable" DATASRC="#dsoInventory"
DATAPAGESIZE="5" BORDER="1" CELLPADDING="5">
<THEAD>
<TH>Title</TH>
<TH>Author</TH>
<TH>Binding</TH>
<TH>Pages</TH>
<TH>Price</TH>
</THEAD>
<TR ALIGN="center">
<TD><SPAN DATAFLD="TITLE"
STYLE="font-style:italic"></SPAN></TD>
<TD><SPAN DATAFLD="AUTHOR"></SPAN></TD>
<TD><SPAN DATAFLD="BINDING"></SPAN></TD>
<TD><SPAN DATAFLD="PAGES"></SPAN></TD>
<TD><SPAN DATAFLD="PRICE"></SPAN></TD>
</TR>
</TABLE>

</BODY>

</HTML>

Thanks
 
I don't understand your problem.

The information you posted appears to be just html.

And...

It appears you're using an Internet Explorer only XML Data Island.
(A big no no, unless you're absolutely positive your users will be only using IE)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top