hi!

 i want to open/edit/save word document in my browser.i am using 
following code,but i am not able get word dcoument content in my 
browser.

FileStream fs=File.OpenRead(Server.MapPath("test.doc"));
StreamReader sr=new StreamReader(fs);
while(sr.peek()>-1)
{
Response.write(sr.ReadToEnd());
sr.Close();
fs.Close();




 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/Microsofts_C_Sharp/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to