Here's some code. I assume that your input types are all text and that you give a name to the iframe. But this is generic script:
Code:
<script language="javascript">
function copyVals(obj){
var message="";
for(i=0; i<obj.length; i++){
if(obj[i].type=="text"){
message += obj[i].value+" - ";
}
}
sendframe.sendit.paged.value=message;
return false;
}
</script>
<!-- In you form you have this: -->
<form onsubmit="return copyVals(this)">
sendframe.sendit.mess.value refers to a textarea (name="paged") in a form (name="sendit") within the iframe (name="sendframe"). The downside of this code is that you'll get a "-" at the end of the message. If this is a problem, you'll have to copy the values of the inputs one by one.
Mike