Microsoft TDC (Tabular Data Control)

T

Tony_VBACoder

I have a question with regards to using the Microsoft TDC ActiveX in my HTML
code when using FrontPage 2000, but don't quite know if this the right group
to post this question or not.

I have a delimited file, Names.txt, that has my data (FirstName, LastName,
WebPage), and I want to use the TDC to display the data in my Web Page. I
have everything working fine, except I don't quite know the correct HTML
syntax to display a hyperlink using the "href" tag for each row in my "First
Name" column, which is the "WebPage" column in my data file. My sample code
is below:

<html>
<head>
</head>

<OBJECT id="tdcDivision1"
CLASSID="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83">
<PARAM NAME="DataURL" VALUE="Names.txt">
<PARAM NAME="UseHeader" VALUE="True">
<PARAM NAME="FieldDelim" VALUE=";">
</OBJECT>


<p align="center">

</p>


<h2 align="left">Names Listing</h2>

<table ID="tblNames" datasrc="#tdcNames" cellspacing="0" border="1"
width="65%">
<THEAD>
<tr bgcolor="#c0c0c0" ALIGN="center">
<td width="50%">First Name</td>
<td width="50%">Last Name</td>
</tr>
</THEAD>
<TBODY>
<tr ALIGN="center">
<td align="left" ><b><a href DATAFLD="WebPage"><DIV
DATAFLD="FirstName"></DIV></a></b></td>
<td align="left" ><b><DIV DATAFLD="LastName"></DIV></b></td>
</tr>
</TBODY>
</table>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top