store and display docx file in aspx page
I have docx file. I want to store into sql server database and then display this docx content into aspx page.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Munesh SharmaPosted Oct 14, 2014, 3:00 AM
if you want to open it on button click or other event just use this
System.Diagnostics.Process.Start(docfilepath);
Slavica MatijeviPosted Oct 14, 2014, 2:57 AM
Hi atif, if you are referring to Telerik's RadWindow then I believe you will get a better help on their support board.
If note than in order to display your content on browsers you need to convert the DOCX content into a HTML content in .NET and then add it to your ASPX page.
atif aslamPosted May 6, 2014, 4:06 AM
I WANT TO DISPLAY THAT DOCX FILE INSIDE A RAD WINDOW ....
HOW TO DO THIS ????
bhuvana santhiPosted Apr 15, 2013, 6:06 AM
you can store the path of the word document in sql server database.
Retrieve it by the path and display the content of the file on the aspx page.