I want to display a Word document in my ASP.NET page, and I want to be able to highlight text in the document according to events that happen on the page (like button clicks).
Is it possible?
Thanks.
I want to display a Word document in my ASP.NET page, and I want to be able to highlight text in the document according to events that happen on the page (like button clicks).
Is it possible?
Thanks.
Everything is possible but it may require some work - one idea might be to use automation on the server side to read the document and then display a page that contains the content of that document and allow some easy reading/editing that on the server side would again use automation to update the document. It's possible something like this is ready implemented and waiting but it also shouldn't be too hard to do yourself.
If you are running IE only you can do it with VBA/ vbscript. Its probably easier to convert the word document to html and then you can use javascript / css and be cross browser compatible.