Question export to web

solfinker

Well-known member
Joined
Aug 6, 2013
Messages
71
Programming Experience
Beginner
Hello.
I know this is not the right forum for web issues, but I am used to find help here, so...
And you can always re-direct me to the proper forum...

To the point:
I use
VB.NET:
Dim sw As StreamWriter = File.CreateText ("E:\web\test1.html")
For I = 0 to 90
sw.WriteLine(HT(I,0).ToString)
Next
sw.Close()
to create an html file every Loop in my program so that I update data in my web page.
This is working fine with a simple web page with a couple of tables and no graphics at all.

Now the next step forward is to create a file (csv, txt, Excel, whatever) with the changing fields and an html capable of reading those fields from the file so that I only have to change the file on the server and forget about the html.
Is there an easy way to do this with tools at hand or is it a thorny problem?

Thanks a lot for your hints.
 
Back
Top