locked
Custom control to upload Data From Ms-Word in ASP.Net/C# Web Application RRS feed

  • Question

  • User-1811084585 posted

    Looking for a Solution to upload & Read the Data From Ms-word in ASP.Net/C# Web Application, But the main criteria is that on the Web Server there will be no Ms-Word will be Installed. Looking for a Solution with .Net Framework 2.0.

    Thursday, June 12, 2008 11:58 PM

Answers

  • User-1187166364 posted
    StreamReader sr = new StreamReader(@"c:\Test.doc");

    Response.Write( sr.ReadToEnd());

    i tried this..it gave me result.. but with some garabage text.. so i belive it is possible.. however youc an use it like XHTML doc. by exporting as html format...

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Friday, June 13, 2008 5:27 AM