want to open editable image on browser in asp.net with VB
I have directly call to mspaint.exe on button click but doesn.t open it is shows on task mana开发者_运维问答ger but not show on broser
There are a few issues here.
1st, if you try to use ASP.NET server side code to invoke or open mspaint.exe it is going to open it on the server and not the browser.
2nd, you are not going to be able to launch a .exe on the client (obvious security reasons) and really can;t even count on them using MS Windows and have paint installed.
The better solution is just to open the image in a new browser window. If you want them to immdeatly edit it, you might have to have them download it 1st, make any modifications using the program of their choice, and then upload it back to your site.
精彩评论