How Can I to Convert a word file in to JPG page by page with ASP on IIS?
I read some docs teach how under
VB:
1.CreateObject("Word.Application")
2.Set Selection to the range to convert
3.Call Selection.savetopicture() to save the data into clipboard
4.Call Savepicture Clipboard.Getdata(), jpgfilepath to save.
But in IIS, Clipboard and SavePicture is not available.
Could anyone suggest how to do it in detail?
Thanks a lot.