copy and paste
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi! Is it possible to do this: when clicking a button, info is selected and copied to computers "cache" (don't know exact name) ready for pasting in other application like Word or Outlook?
hi there, this can be done by javascript: + get the selected text: try document.selection.createRange().text + copy this data to clipboard: try window.clipboardData.setData Hope this helps << >>