Nicholas Paldino ,
Thanks for your helps.
I think I don't describe my question exactly.and the question is, I will
upload a word
file to web server, and then web application import the contents in the word
file to the database, if the word file contains picture object ,and the web
application will save the picture object to a picture file. all the process
will run in the web server ,not in client, and when I get the characters in
the word file it is ok,so I think there is less the probability of the
security reason.
Wish your answer. thanks!
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> дÈëÏûÏ¢
news:e#*************@TK2MSFTNGP15.phx.gbl...
zheng,
You aren't going to be able to access a running program from a web
application. The security restrictions are pretty overwhelming.
I would resort to unmanaged code, and an active x control embedded in
the page to do this, since you won't have to worry about security then
(but it's a tough sell, since Active X controls have free reign to do what they
want, and people should avoid them when possible, at least, for embedding
in web pages).
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com
"zheng" <cc****@163.com> wrote in message
news:O0**************@tk2msftngp13.phx.gbl... ÇçÌì
I have a word document and it has a picture object, I want save the
picture
object as other single picture file by C# program. I have a idea, by
clipboard, copy the picture to clipboard, and then save as a file from
clipboard, it is work well in application,but don't work in a web
application. how can I to do? and are there other ideas to save the
picture
object in web application?
help me !!