Sep 11, 2001 #1 Guest_imported New member Joined Jan 1, 1970 Messages 0 Hello. I have an asp page that resembles a report. When the user clicks on a button, I need this report to open up in Word. Is this possible? Thanks, Rene
Hello. I have an asp page that resembles a report. When the user clicks on a button, I need this report to open up in Word. Is this possible? Thanks, Rene
Sep 13, 2001 Thread starter #2 Guest_imported New member Joined Jan 1, 1970 Messages 0 I found my own answer to this one and it works great. I simply type the following two sentences into the header section of my page. Note* for msExcel, replace msword with vnd.ms-excel <% Response.Buffer = True Response.ContentType = "application/msword" %> Rene Upvote 0 Downvote
I found my own answer to this one and it works great. I simply type the following two sentences into the header section of my page. Note* for msExcel, replace msword with vnd.ms-excel <% Response.Buffer = True Response.ContentType = "application/msword" %> Rene