I am working on an application where I need to read a bulletted list from a MS word document through C# code and then add <li> </li> tags at the begining and end of each of the bullet points .Can someone help me with this
ASP.NET is quite different from a general RTF or doc file, so I suggest you converting this snippet of codes into html, and then read it out through System.IO.File.ReadAllText and put it like this following:
ROHITJGC
0 Points
22 Posts
Reading bulleted list from MS word doc and converting it into html ordered list using <li></li> i...
Nov 02, 2012 08:40 PM|LINK
I am working on an application where I need to read a bulletted list from a MS word document through C# code and then add <li> </li> tags at the begining and end of each of the bullet points .Can someone help me with this
Decker Dong ...
All-Star
118619 Points
18779 Posts
Re: Reading bulleted list from MS word doc and converting it into html ordered list using <li></l...
Nov 03, 2012 08:34 AM|LINK
Hi,
ASP.NET is quite different from a general RTF or doc file, so I suggest you converting this snippet of codes into html, and then read it out through System.IO.File.ReadAllText and put it like this following:
<%
=System.IO.File.ReadAllText("c:\\xx.html")
%>