How Can I convert a uploaded Word file in Jpg page by page?
I read some doc shows how under
VB:
1.CreateObject("application.word")
2.Open the Doc file and set the Selection to the range to convert.
3.Call Selection.CopyasPicture to convert the Selection to Clipboard in graphic
4.Call SavePicture Clipboard.getdata(), jpgfilepath to save the clipboard to a file.
But Under IIS, Clipborad and SavePicture is not avaiable.
How can I do the that under IIS?
Thanks a lot.