DanF
Sep 16th, 2000, 05:01 PM
I am currently using the following to append to a file locally:
Open "reglog.csv" For Append As #1
Print #1, txtName & ", " & varKeycode & ", " & Now() & ", <"
Close #1
How could use something similar in my activeX project, to append the data to a file on my web page? especially if the page requires a username and password to upload to it?
I would also need it to produce an error message if it couldn't write it (if the user is offline etc).
any help would be appreciated!
Dan
Open "reglog.csv" For Append As #1
Print #1, txtName & ", " & varKeycode & ", " & Now() & ", <"
Close #1
How could use something similar in my activeX project, to append the data to a file on my web page? especially if the page requires a username and password to upload to it?
I would also need it to produce an error message if it couldn't write it (if the user is offline etc).
any help would be appreciated!
Dan