如何实现在ASP中全选页面内容,并且进行复制?
------解决方案--------------------
如框架Bottom的名字为name= "main ",那么在top中的代码为
<script language= "JavaScript " type= "text/javascript ">
<!--
function OpenWord(){
var sel=top.main.document.body.createTextRange()
sel.select()
top.main.document.execCommand( 'Copy ')
sel.moveEnd( 'character ')
}
//-->
</script>
</head>
<body>
<input type=button name= 'button_export ' onclick=OpenWord() value=复制>
</body>