Posted on: 6/7/2014 1:31:15 AM | Views : 402

Hi Guys,
I want to open the word that having the content like line,shapes in asp.net web page.
Following code is working fine for open the word document having content of words.But it does nt display image and shapes.
Here is my code
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using Microsoft.Office; using Microsoft.Office.Interop.Word; using System.IO; public partial class _Default :System.Web.UI.Page { protected void Upload(object sender, EventArgs e) { object missingType = Type.Missing; object readOnly = true; object isVisible = false; object documentFormat = 8; string randomName = DateTime.Now.Ticks.ToString(); object htmlFilePath = Server.MapPath("~/Temp/") + randomName + ".htm"; string directoryPath = Server.MapPath( ...

Go to the complete details ...