HI,
I am using the follwoing code to convert word doc to html. The image embedded in the word doc is displayng properly if I try from my machine. When i deployed the code in our server, the images were created in Windows\Temp folder but not displayed in the converted aspx page. The ASPNET user is having read and write access to the folder. Please suggest me a solution. An immediate help will be greatly appreciated.
Stream inMS = new MemoryStream(binaryData.Length);
inMS.Write(binaryData, 0, binaryData.Length);
inMS.Position = 0;
Document inDoc = new Document(inMS);
MemoryStream outMS = new MemoryStream();
inDoc.Save(outMS, SaveFormat.Html);