gnosticgnowledge,
If you are refering to capturing them as they are entered, then you need to use javascript to do this.
<script language="javascript">
document.onkeydown = KeyPress;
function KeyPress() {
<!--- Capture Return --->
if (event.keyCode == 13 && event.srcElement.type != 'textarea') {
alert('Return Pressed');
}
}
</script>
Regards
Plucka
Main Topics
Browse All Topics





by: danrosenthalPosted on 2006-04-11 at 16:05:15ID: 16432249
try looking for #chr(10)# and #chr(13)# which are the ascii codes for carriage return and line feed