
January 9th, 2013, 05:30 AM
|
|
Registered User
|
|
Join Date: Jan 2013
Posts: 1
Time spent in forums: 27 m 5 sec
Reputation Power: 0
|
|
|
Problems with displaying data in a tabular format
Hio all,
I am trying to take the data, taken from the external text document and display it in a tabular format.
the script is below:
<OBJECT ID="designer"
CLASSID="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83"
BORDER="0"
WIDTH="0"
HEIGHT="0">
<PARAM NAME="DataURL" VALUE="designer.txt" />
<PARAM NAME="UseHeader" VALUE="True" />
</OBJECT>
<H1>Designer First Name:</H1>
<INPUT TYPE=text
DATASRC="#designer"
DATAFLD="first" />
<H1>Designer Last Name:</H1>
<INPUT TYPE=text
DATASRC="#designer"
DATAFLD="last" />
<H1>Year</H1>
<INPUT TYPE=text
DATASRC="#designer"
DATAFLD="year" />
would anyone point me where i go wrong?
|