**Hidden Content: To see this hidden content your post count must be 1 or greater.**
Printable View
**Hidden Content: To see this hidden content your post count must be 1 or greater.**
เคยเห็นถ้าเป็น web สามารถทำแบบนี้ได้ function CopyToClipboard()
{
CopiedTxt = document.selection.createRange();
CopiedTxt.execCommand("Copy");
}
function PasteFromClipboard()
{
document.Form1.txtArea.focus();
PastedText = document.Form1.txtArea.createTextRange();
PastedText.execCommand("Paste");
}
ถ้าเอาไปใช้ต่อก็สามารถส่งข้อมูลต่าง ไปฝั่ง server ได้เช่นกัน อันตรายจิงๆ