I have some C# / asp.net code I inherited which has a textbox which I want to make multiline. I did so by adding textmode="multiline" but when I try to insert a newline, the enter key instead submits the form :P
I googled around and it seems like the default behavior should be for enter (or control-enter) to insert a newline. Like I said I inherited the code so I'm not sure if there's javascript monkeying around or if there's just a simple asp.net thing I have to do.
Here's the bit of the rendered HTML
EDIT:
<div id="od_fvOrder_orderEvents_spanAdd" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'od_fvOrder_orderEvents_cmdOK')" style="display:none; margin-top:1ex; font-size:12px; ">
<textarea name="od$fvOrder$orderEvents$txtAdd" rows="2" cols="20" id="od_fvOrder_orderEvents_txtAdd" style="width:529px;"></textarea>
<input type="submit" name="od$fvOrder$orderEvents$cmdOK" value="OK" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("od$fvOrder$orderEvents$cmdOK", "", true, "", "", false, false))" id="od_fvOrder_orderEvents_cmdOK" />
<input type="submit" name="Cancel" value="Cancel" onclick="javascript:toggleVisible('od_fvOrder_orderEvents_spanAdd','od_fvOrder_orderEvents_addLink');return false;my answer here is the "/>
right" one but I can't find that "WebForm_FireDefaultButton" javascript anywhere, is accept it something asp.net is generating?because it's mine :P
