show/hide this revision's text 3 the answer

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(&quot;od$fvOrder$orderEvents$cmdOK&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, 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

show/hide this revision's text 2 added the actual code snippet

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:

<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(&quot;od$fvOrder$orderEvents$cmdOK&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, 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;" />

I can't find that "WebForm_FireDefaultButton" javascript anywhere, is it something asp.net is generating?

show/hide this revision's text 1

enter key to insert newline in asp.net multiline textbox control

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.