enter key to insert newline in asp.net multiline textbox control - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T13:35:58Z http://stackoverflow.com/feeds/question/30230 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/30230/enter-key-to-insert-newline-in-asp-net-multiline-textbox-control 2 enter key to insert newline in asp.net multiline textbox control adambox 2008-08-27T14:12:30Z 2009-02-18T00:51:36Z <p>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</p> <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.</p> <p><strong>EDIT: my answer <a href="#32358" rel="nofollow">here</a> is the "right" one but I can't accept it because it's mine :P</strong></p> http://stackoverflow.com/questions/30230/enter-key-to-insert-newline-in-asp-net-multiline-textbox-control/30246#30246 0 Answer by Juan Manuel for enter key to insert newline in asp.net multiline textbox control Juan Manuel 2008-08-27T14:17:51Z 2008-08-27T14:17:51Z <p>I suspect it's (like you say) some custom javascript code.</p> <p>The original asp.net control works fine... you are going to have to check the code</p> http://stackoverflow.com/questions/30230/enter-key-to-insert-newline-in-asp-net-multiline-textbox-control/30248#30248 0 Answer by Joel Coehoorn for enter key to insert newline in asp.net multiline textbox control Joel Coehoorn 2008-08-27T14:18:37Z 2008-08-27T14:18:37Z <p>Are you handling the textchanged event for the textbox? That would mean ASP.Net sets the textbox to cause a postback (submit the page) for anything the <em>might</em> cause the textbox to lose focus, including the enter key.</p> http://stackoverflow.com/questions/30230/enter-key-to-insert-newline-in-asp-net-multiline-textbox-control/30261#30261 1 Answer by samjudson for enter key to insert newline in asp.net multiline textbox control samjudson 2008-08-27T14:22:38Z 2008-08-27T14:22:38Z <p>I created a sample page with a TextBox and a Button and it worked fine for me:</p> <pre><code>&lt;asp:TextBox runat="server" ID="textbox1" TextMode="MultiLine" /&gt; &lt;br /&gt; &lt;br /&gt; &lt;asp:Button runat="server" ID="button1" Text="Button 1" onclick="button1_Click" /&gt; </code></pre> <p>So it most likely depends on either some other property you have set, or some other control on the form.</p> <p>Edit: TextChanged event is only triggered when the TextBox loses focus, so that can't be the issue.</p> http://stackoverflow.com/questions/30230/enter-key-to-insert-newline-in-asp-net-multiline-textbox-control/30372#30372 1 Answer by Dave Ward for enter key to insert newline in asp.net multiline textbox control Dave Ward 2008-08-27T15:02:12Z 2008-08-27T15:02:12Z <blockquote> <p>I can't find that "WebForm_FireDefaultButton" javascript anywhere, is it something asp.net is generating?</p> </blockquote> <p>Yes.</p> <p>That's generated to support the <strong>DefaultButton</strong> functionality of the form and/or Panel containing your controls. This is the source for it:</p> <pre><code>function WebForm_FireDefaultButton(event, target) { if (event.keyCode == 13) { var src = event.srcElement || event.target; if (!src || (src.tagName.toLowerCase() != "textarea")) { var defaultButton; if (__nonMSDOMBrowser) { defaultButton = document.getElementById(target); } else { defaultButton = document.all[target]; } if (defaultButton &amp;&amp; typeof (defaultButton.click) != "undefined") { defaultButton.click(); event.cancelBubble = true; if (event.stopPropagation) event.stopPropagation(); return false; } } } return true; } </code></pre> http://stackoverflow.com/questions/30230/enter-key-to-insert-newline-in-asp-net-multiline-textbox-control/30572#30572 0 Answer by adambox for enter key to insert newline in asp.net multiline textbox control adambox 2008-08-27T16:17:44Z 2008-08-27T16:17:44Z <p>@<a href="#30372" rel="nofollow">dave-ward</a>, I'm not good with javascript, is that saying it shouldn't submit the form if it's enter pressed in a textarea?</p> <p>assuming that's the only javascript concerned with this textbox control, how do I solve my original problem?</p> http://stackoverflow.com/questions/30230/enter-key-to-insert-newline-in-asp-net-multiline-textbox-control/30589#30589 0 Answer by Dave Ward for enter key to insert newline in asp.net multiline textbox control Dave Ward 2008-08-27T16:29:42Z 2008-08-27T16:29:42Z <p>That's correct.</p> <p>I don't think it's related to your problem. I can confirm that using the DefaultButton property on either the form, Panel, or both does not interfere with entering a CR in textareas.</p> <p>Are you absolutely sure there's no JavaScript on the page (or included elsewhere) that attaches event handlers?</p> http://stackoverflow.com/questions/30230/enter-key-to-insert-newline-in-asp-net-multiline-textbox-control/30826#30826 0 Answer by adambox for enter key to insert newline in asp.net multiline textbox control adambox 2008-08-27T18:35:15Z 2008-08-27T18:35:15Z <p>@<a href="#30589" rel="nofollow">dave-ward</a>, I just dug through mounds of javascript. most was ASP.NET generated stuff for validation and AJAX, there's a bunch starting with "WebForm_" that I guess is standard stuff to do the defaultbutton, etc. the only javascript we put on the page is for toggling visibility and doing some custom validation...</p> <p>edit: I did find the below. I don't understand it though :P the beginning of the form the textarea is in, and a script found later: (note, something on stackoverflow is messing with the underscores)</p> <pre><code>&lt;form name="Form1" method="post" action="default.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="Form1"&gt; &lt;script type="text/javascript"&gt; //&lt;![CDATA[ var theForm = document.forms['Form1']; if (!theForm) { theForm = document.Form1; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]&gt; &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/30230/enter-key-to-insert-newline-in-asp-net-multiline-textbox-control/32358#32358 3 Answer by adambox for enter key to insert newline in asp.net multiline textbox control adambox 2008-08-28T14:16:01Z 2009-02-18T00:51:36Z <p>It turns out this is a bug with Firefox + ASP.NET where the generated javascript for the defaultButton stuff doesn't work in Firefox. I had to put a replacement for the WebForm_FireDefatultButton function as described <a href="http://forums.asp.net/t/1294544.aspx" rel="nofollow">here</a>:</p> <pre><code>function WebForm_FireDefaultButton(event, target) { var element = event.target || event.srcElement; if (event.keyCode == 13 &amp;&amp; !(element &amp;&amp; element.tagName.toLowerCase() == "textarea")) { var defaultButton; if (__nonMSDOMBrowser) { defaultButton = document.getElementById(target); } else { defaultButton = document.all[target]; } if (defaultButton &amp;&amp; typeof defaultButton.click != "undefined") { defaultButton.click(); event.cancelBubble = true; if (event.stopPropagation) { event.stopPropagation(); } return false; } } return true; } </code></pre> http://stackoverflow.com/questions/30230/enter-key-to-insert-newline-in-asp-net-multiline-textbox-control/377887#377887 1 Answer by AlexWalker for enter key to insert newline in asp.net multiline textbox control AlexWalker 2008-12-18T13:48:27Z 2008-12-18T13:48:27Z <p><a href="http://blog.codesta.com/codesta_weblog/2007/12/net-gotchas---p.html" rel="nofollow">http://blog.codesta.com/codesta_weblog/2007/12/net-gotchas---p.html</a> worked for me.</p>