<html>
<head>
<script language="Javascript">
<!--
//specify whether contents should be auto copied to clipboard (memory)
//Applies only to IE 4+
//0=no, 1=yes
var copytoclip=1;
function HighlightAll(theField) {
var tempval=eval("document."+theField);
tempval.focus();
tempval.select();
if (document.all&©toclip==1){
therange=tempval.createTextRange();
therange.execCommand("Copy");
window.status="Contents highlighted and copied to clipboard!";
setTimeout("window.status=''",1800);
}
}
//-->
</script>
</head>
<body>
<form name="test">
<a href="javascript:HighlightAll('test.select1')">Kodu Seç</a><br>
<textarea name="select1" rows="10" cols="35">Deneme Deneme</textarea>
</form>
</body>
</html>