09-15-2005 01:32 AM
09-15-2005 01:45 PM
Venki,
If I understand what you are tyring to do (store CVI data in some sort of medium and have that medium translate into a dynamic website) storing data into word then having it create a web page is definately not the best way to go about this.
Assuming you can do what you want with your server, the best way to do what you are trying to do would be the following.
1.) Create a dynamically updateable website connected to a database backend. You can use asp, jsp, php, etc. to do this. I perfer using .asp because it's what I know best. The following link should help you get started with this part of the project. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnanchor/html/activeservpages.asp
2.) Download the data from the CVI application into the database on your server. To do this you can either use the CVI SQL Toolkit or you can use straight ODBC commands. See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odbc/htm/odbcabout_this_manual.asp if you wish to use straight ODBC.
Using these two steps you can have a single, or multiple webpage(s) that update(s) dynamically whenever data is changed in your CVI application.