E
Elliot J
Hi all,
I am using some basic HTML to read the contents of a CSV file into a page.
Ie:
<OBJECT id="test" CLASSID="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83">
<PARAM NAME="DataURL" VALUE="test.csv">
<PARAM NAME="UseHeader" VALUE="True">
<PARAM NAME="TextQualifier" VALUE=",">
</OBJECT>
<table datasrc=#TEST width="100%">
<thead>
<tr style="font-weight:bold">
<td width="20%">DATE</td>
<td width="80%">EVENT</td>
</tr>
</thead>
<tbody>
<tr>
<td><div datafld="DATE"></div></td>
<td><div datafld="EVENT"></div></td>
</tr>
</tbody>
</table>
What I want to have is an internet link in one column of the data (let's say
the EVENT field for now). Currently, if there is a link reference in my .csv
file, the final page simply displays the HTML code, not the actual link.
Can anyone help me crack this, or point me in the right direction. I have
been mainly learning from
http://msdn2.microsoft.com/en-us/library/ms531385.aspx but I'm not quite
understanding how to achieve what I'm after.
Thanks for any thoughts in advance.
EJ
I am using some basic HTML to read the contents of a CSV file into a page.
Ie:
<OBJECT id="test" CLASSID="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83">
<PARAM NAME="DataURL" VALUE="test.csv">
<PARAM NAME="UseHeader" VALUE="True">
<PARAM NAME="TextQualifier" VALUE=",">
</OBJECT>
<table datasrc=#TEST width="100%">
<thead>
<tr style="font-weight:bold">
<td width="20%">DATE</td>
<td width="80%">EVENT</td>
</tr>
</thead>
<tbody>
<tr>
<td><div datafld="DATE"></div></td>
<td><div datafld="EVENT"></div></td>
</tr>
</tbody>
</table>
What I want to have is an internet link in one column of the data (let's say
the EVENT field for now). Currently, if there is a link reference in my .csv
file, the final page simply displays the HTML code, not the actual link.
Can anyone help me crack this, or point me in the right direction. I have
been mainly learning from
http://msdn2.microsoft.com/en-us/library/ms531385.aspx but I'm not quite
understanding how to achieve what I'm after.
Thanks for any thoughts in advance.
EJ