how to create a word file on clients from aspx site

chipmk

New Member
my code generates a word document from some data and opens it directly.when i start it local it works. but when i put the code in the server and try to generate it there it doesnt work. the file should generate in the clients not on the server. is this possible? this is how i create the word file:\[code\] Dim oApp As Word.Application Dim oDoc As Word.Document oApp = CreateObject("Word.Application") oDoc = oApp.Documents.Add\[/code\]afte i create the file i can open it with this command:\[code\] oApp.Visible = True\[/code\]thanks in advance for your help
 
Back
Top