ASP - Word Document
Here is what I'm trying to do. I've got a word document that I would like to display client side. This is easily done using:
<%
Response.ContentType = "application/msword"
Server.Execute "myDoc.doc"
%>
Here is the problem... I have to insert at certain points in the documnent values that I will fetch in a DB. Is there anyway to do this, without creating a new document each time someone loads the page.
Thanks
|