I am currently using this to output a file as a Microsoft Word document
It works great...
Now I have two issues that I hope will not be too difficult to solve
1) I need a way to make a page-break in Word so that I can create separate pages
2) (the hardest) - I need to output LABELS (like an Avery 8120 or something). How would I go about doing this? I would like to stay away from Components but if that is necessary let me know.
My preference would be to simply output it and have the client computer open it in Word (as my code example above)... but if necessary I am open to the server creating and saving the .doc and then delivering that file. Whatever is easier or necessary...
-Phil
fillup07@hotmail.com
If my post was helpful, please give me a star!
Code:
Response.ContentType = "application/msword"
Response.AddHeader "Content-Disposition", "attachment;filename=thefilename.doc"
It works great...
Now I have two issues that I hope will not be too difficult to solve
1) I need a way to make a page-break in Word so that I can create separate pages
2) (the hardest) - I need to output LABELS (like an Avery 8120 or something). How would I go about doing this? I would like to stay away from Components but if that is necessary let me know.
My preference would be to simply output it and have the client computer open it in Word (as my code example above)... but if necessary I am open to the server creating and saving the .doc and then delivering that file. Whatever is easier or necessary...
-Phil
fillup07@hotmail.com
If my post was helpful, please give me a star!