how to open word document in asp.net??
-
hi, how to open word document in asp.net?? for example when i trigger in button its showing word application. it is possible ???...
Yours, KaNNaN ----------------------------------------------------------------- "Success is When Ur Signature Becomes An Autograph"
-
hi, how to open word document in asp.net?? for example when i trigger in button its showing word application. it is possible ???...
Yours, KaNNaN ----------------------------------------------------------------- "Success is When Ur Signature Becomes An Autograph"
Check this out: http://bytes.com/topic/asp-net/answers/520496-how-open-word-document-asp-net-c[^]
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
The woods are lovely, dark and deep, But I have promises to keep, And miles to go before I sleep, And miles to go before I sleep! -
hi, how to open word document in asp.net?? for example when i trigger in button its showing word application. it is possible ???...
Yours, KaNNaN ----------------------------------------------------------------- "Success is When Ur Signature Becomes An Autograph"
As Far as my understanding..! You want to display the word document in your application..! is it right? If yes..! Copy and paste the word document in the server.Map Path give the link to the word doc..! If the MS Office Is installed in your System..! It will show the word doc..!
LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.
-
As Far as my understanding..! You want to display the word document in your application..! is it right? If yes..! Copy and paste the word document in the server.Map Path give the link to the word doc..! If the MS Office Is installed in your System..! It will show the word doc..!
LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.
-
hi, how to open word document in asp.net?? for example when i trigger in button its showing word application. it is possible ???...
Yours, KaNNaN ----------------------------------------------------------------- "Success is When Ur Signature Becomes An Autograph"
if( Request.QueryString["strFile"] != null ) { string strFilePath1=""; string strFileName = Request.QueryString["strFile"].ToString(); strFilePath1=Request.PhysicalApplicationPath+"/BackOffice/Catalogue/UploadFiles/"+strFileName; if(strFileName!="") { Response.ContentType=strFilePath1; Response.AddHeader("content-disposition", "attachment;filename="+strFileName); Response.WriteFile(strFilePath1); } } http://himabinduvejella.blogspot.com
"If you can dream IT, you can become IT"
-
thanks for valuable reply.... i got solution for this...
Yours, KaNNaN ----------------------------------------------------------------- "Success is When Ur Signature Becomes An Autograph"