//This is what I have in my tag in the master page
//this is what makes the return key act as tab
onkeydown="if (event.keyCode==13) {event.keyCode=9; return event.keyCode }">
//this is the multiline textbox I want to overwrite this on
//I want to be able to press return to create a new line in this box instead of tab
//This is the javascript function I am calling
function Keydown(value)
{
if (event.keyCode==13) {value = value+ "\n";event.returnValue = false;}
}
|