bea
01-17-2003, 03:51 AM
What I have is:
a price list for 50 products in Excel file prices.xls
and
about 50 html files (product1.html, product2.html,..., product50.html), each of them containing a cell (<td>) with the product price.
What I want is:
when I change prices in xls file, to see changes sort of automatically made in each html file (each html file containing a certain cell from the xls file)
I've already tried:
1 - to insert database results from xls file to html file and saved it as asp file, but I always got the entire pricelist (table column) and I need just a single cell (one price) from the xls file to appear in html file. Even when I defined names for each cell containing the price information it didn't work (looks like it works just for the columns - defining names I mean)
2 - with <!--#include file="prices.xls" --> in html code and saved it as shtm file, but I also got data from the entire table
In both cases it looks to me the only problem is how to tell the html code to read the certain cell from the xls file and not the entire column or table.
I will really appreciate any ideas, thanks in advance and have a nice weekend!
a price list for 50 products in Excel file prices.xls
and
about 50 html files (product1.html, product2.html,..., product50.html), each of them containing a cell (<td>) with the product price.
What I want is:
when I change prices in xls file, to see changes sort of automatically made in each html file (each html file containing a certain cell from the xls file)
I've already tried:
1 - to insert database results from xls file to html file and saved it as asp file, but I always got the entire pricelist (table column) and I need just a single cell (one price) from the xls file to appear in html file. Even when I defined names for each cell containing the price information it didn't work (looks like it works just for the columns - defining names I mean)
2 - with <!--#include file="prices.xls" --> in html code and saved it as shtm file, but I also got data from the entire table
In both cases it looks to me the only problem is how to tell the html code to read the certain cell from the xls file and not the entire column or table.
I will really appreciate any ideas, thanks in advance and have a nice weekend!