enter key to insert newline in asp.net multiline textbox control - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T13:35:58Zhttp://stackoverflow.com/feeds/question/30230http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/30230/enter-key-to-insert-newline-in-asp-net-multiline-textbox-control2enter key to insert newline in asp.net multiline textbox controladambox2008-08-27T14:12:30Z2009-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#302460Answer by Juan Manuel for enter key to insert newline in asp.net multiline textbox controlJuan Manuel2008-08-27T14:17:51Z2008-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#302480Answer by Joel Coehoorn for enter key to insert newline in asp.net multiline textbox controlJoel Coehoorn2008-08-27T14:18:37Z2008-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#302611Answer by samjudson for enter key to insert newline in asp.net multiline textbox controlsamjudson2008-08-27T14:22:38Z2008-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><asp:TextBox runat="server" ID="textbox1" TextMode="MultiLine" />
<br />
<br />
<asp:Button runat="server" ID="button1" Text="Button 1" onclick="button1_Click" />
</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#303721Answer by Dave Ward for enter key to insert newline in asp.net multiline textbox controlDave Ward2008-08-27T15:02:12Z2008-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 && 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#305720Answer by adambox for enter key to insert newline in asp.net multiline textbox controladambox2008-08-27T16:17:44Z2008-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#305890Answer by Dave Ward for enter key to insert newline in asp.net multiline textbox controlDave Ward2008-08-27T16:29:42Z2008-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#308260Answer by adambox for enter key to insert newline in asp.net multiline textbox controladambox2008-08-27T18:35:15Z2008-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><form name="Form1" method="post" action="default.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="Form1">
<script type="text/javascript">
//<![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();
}
}
//]]>
</script>
</code></pre>
http://stackoverflow.com/questions/30230/enter-key-to-insert-newline-in-asp-net-multiline-textbox-control/32358#323583Answer by adambox for enter key to insert newline in asp.net multiline textbox controladambox2008-08-28T14:16:01Z2009-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 &&
!(element &&
element.tagName.toLowerCase() == "textarea"))
{
var defaultButton;
if (__nonMSDOMBrowser)
{
defaultButton = document.getElementById(target);
}
else
{
defaultButton = document.all[target];
}
if (defaultButton && 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#3778871Answer by AlexWalker for enter key to insert newline in asp.net multiline textbox controlAlexWalker2008-12-18T13:48:27Z2008-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>