G
Guest
I want to allow a user to read a local file from their hard drive and load
information on my web page. I am using the TDC object.
Here is what will work when I "preview in browser"
<OBJECT ID="Collection" CLASSID="CLSID:333C7BC4-460F-11D0-BC04-0080C7055A83"
width="1" height="1">
<PARAM NAME="DataURL" VALUE="C:\comicmart\collection.csv">
<PARAM NAME="UseHeader" VALUE="TRUE">
</OBJECT>
I have tried to use the following but it does not work.
<OBJECT ID="Collection" CLASSID="CLSID:333C7BC4-460F-11D0-BC04-0080C7055A83"
width="1" height="1">
<PARAM NAME="DataURL" VALUE="file://C:\\ComicMart\collection.csv">
<PARAM NAME="UseHeader" VALUE="TRUE">
</OBJECT-->
Is there a way to read a local file (collection.csv) into a web page?
The resulting web page would show the user their file information on my web
page and would not be visible to other people.
information on my web page. I am using the TDC object.
Here is what will work when I "preview in browser"
<OBJECT ID="Collection" CLASSID="CLSID:333C7BC4-460F-11D0-BC04-0080C7055A83"
width="1" height="1">
<PARAM NAME="DataURL" VALUE="C:\comicmart\collection.csv">
<PARAM NAME="UseHeader" VALUE="TRUE">
</OBJECT>
I have tried to use the following but it does not work.
<OBJECT ID="Collection" CLASSID="CLSID:333C7BC4-460F-11D0-BC04-0080C7055A83"
width="1" height="1">
<PARAM NAME="DataURL" VALUE="file://C:\\ComicMart\collection.csv">
<PARAM NAME="UseHeader" VALUE="TRUE">
</OBJECT-->
Is there a way to read a local file (collection.csv) into a web page?
The resulting web page would show the user their file information on my web
page and would not be visible to other people.