how can i read doc document in aspnetyou can read


How can I read .doc document in ASP.Net?

You can read from a text file like this.

 

Private void Button12_Click(object sender, System.EventArgs e)

{

string path="C:Inetpub ew1.txt";

using(StreamReader reader=new StreamReader(path))

{

string line;

while ((line=reader.ReadLine())!=null)

{

Label2.Text+="
"+line;

}

}

}

from .doc file try yourself

 

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: how can i read doc document in aspnetyou can read
Reference No:- TGS0289554

Expected delivery within 24 Hours