:
: Hello,
:
: What I gather from here is 3 possibilities with CGI or ASP:
:
: 1. You create a program in ASP (which is better at dealing with VB) and it directly calls a function in your VB program (you'll have to convert your program into a DLL..its easy however) and takes the returned value and displays it on the browser.
:
: (post in the ASP forum if you need more information on this)
:
: 2. You can create a C++ CGI program to do the above.
:
: (again, post in the CGI forum if you need more info)
:
: 3. If you can ensure that the VB program is running the in background of the server (where the .html file is to be hosted) (this requires a dedicated server if you aren't only testing on your local intranet or local machine), then you can simply put an "HTTP META Refresh" tag in your .html file which will automatically reload the .html file in your browser after a specified interval of time. This way, it always read the latest file generated by your VB program.
:
:
: Hope the above helped in some way.

:
: Manish.
:
:
Ok, thanks very much. I allready tried option 3 and this works ok.
Patrick