Or depending on how sophisticated you page needs to be just have the changing data in a database.
And use ASP to open the database and output the info in a table.
Or where ever you need some data use this VBScript sample
<%
Set Conn = server.CreateObject("ADODB.Connection"

Conn.Open "driver=SQL Server;server=yoursite.com;uid=userID;pwd=password;database=yourDatabase;"
Set RS1 = Conn.Execute("SELECT * FROM [YourTablename]"
<table border="1" width="90%" bordercolor="#0066FF">
<tr>
<td width="10%" align="left" bordercolor="#000000" bgcolor="#000000">
<p align="left"><font color="#FFFFFF">Add to PO</font></td>
<td width="18%" align="left" bordercolor="#0066FF" bgcolor="#000000">
<p align="left"><font color="#FFFFFF">Part Number</font></td>
<td width="52%" align="left" bordercolor="#000000" bgcolor="#000000">
<p align="left"><font color="#FFFFFF">Description</font></td>
<td width="12%" align="right" bordercolor="#000000" bgcolor="#000000">
<p align="left"><font color="#FFFFFF">Price</font></td>
<tr>
<td width="10%" align="left"> </td>
<td width="18%" align="left"> </td>
<td width="52%" align="left"> </td>
<td width="12%" align="right"> </td>
</tr>
<%
If Not RS1.EOF Then
Do%>
<tr>
<td width="18%" align="left">
<p align="center"><%Response.Write RS1("STOCK_CODE"

%></td>
<td width="52%" align="left">
<p align="center"><%Response.Write RS1("Description"

%></td>
<td width="12%" align="right">
<%If RS1("SELLING_PRICE"

= 0 then
Price1 = "Call"
Else
Price1 = FormatCurrency(RS1("SELLING_PRICE"

,2,0,0,0)
End if%>
<p align="center"><%Response.Write Price1%></td>
</tr>
<% RS1.Movenext
Loop Until RS1.EOF
Else
Response.Write("No records or something"
End If
%>
My example is a parts database:
What this does is open a SQL Server7 database and table then it creates a Table
Next it loops through all of the records appending table rows as it goes.
Now you could have a wordy document and anywhere you need changable data put this code:
Hi My Name is <%Response.Write RS1("Name"

%> I am glad to meet you.
DougP, MCP
dposton@universal1.com
Ask me how Bar-codes can help you be more productive.