I have an asp.net/C# web application. I have an image steaming .aspx page to render images. I have to copy an image to client's clipboard. So I first load the image in a hidden image box and copy it to clipboard by using javascript command
ctrlRange.execCommand('Copy');
Image does copies to clipboard. It can be pasted in MSPaint. But it cannot paste in MS word. When try to paste it appear as small white box. Requirement is to paste image on MS word.
Thanks