TextBox causes Button Postback in ASP.NET - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T03:26:13Zhttp://stackoverflow.com/feeds/question/813095http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/813095/textbox-causes-button-postback-in-asp-net1TextBox causes Button Postback in ASP.NETMatt2009-05-01T20:20:39Z2009-06-02T00:47:27Z
<p>ASP.NET 2.0, testing in FF3 and IE7. </p>
<p>When I hit the 'enter' button from a text box the corresponding "OnClick" event for the first ImageButton in the page is fired. If I remove that image button, it fires the next ImageButton OnClick event on the page.</p>
<p>From the FireBug console, if I use JavaScript to submit the Form, this does not happen. But for whatever reason hitting enter from the textbox triggers the unrelated ImageButton event.</p>
<p>I found <a href="http://stackoverflow.com/questions/712407/textbox-on-gridview-causing-a-button-click-event-to-fire">this question</a> which had a similar problem, however the proposed answer to that solution doesn't work since ImageButtons do not have a "UseSubmitBehavior" property on them.</p>
<p>I don't understand why this event is firing. If I look at Request.Form, I can see that __EVENTTARGET is empty, and it is in fact posting the entire form contents (all of my textboxes), but also includes imageButton.x and imageButton.y key/value pairs.</p>
<p>Why is this? I suppose I could detect "enter" key presses from these text boxes with javascript, but my experience in the past is this behavior is highly variable between browsers. Any suggestions?</p>
http://stackoverflow.com/questions/813095/textbox-causes-button-postback-in-asp-net/813109#8131090Answer by Miyagi Coder for TextBox causes Button Postback in ASP.NETMiyagi Coder2009-05-01T20:24:09Z2009-05-01T20:24:09Z<p>You could try setting a default button in an asp panel or on your form. This will let you control what happens when a user hits the enter key.</p>
http://stackoverflow.com/questions/813095/textbox-causes-button-postback-in-asp-net/813122#8131220Answer by Brandon for TextBox causes Button Postback in ASP.NETBrandon2009-05-01T20:28:05Z2009-05-01T20:28:05Z<p>Its the default behaviour for an enter button press in a non text area to post back a form. You would have to handle it in a javascript method to stop the postback.</p>
<p>You'd just need to check the window.event.keyCode property to see if its equal to 13. If it is, reset it to 0.</p>
<pre><code>function KeyPress()
{
if (window.event.keyCode == 13)
{
window.event.keyCode = 0;
}
}
</code></pre>
http://stackoverflow.com/questions/813095/textbox-causes-button-postback-in-asp-net/813132#8131320Answer by Beaud. for TextBox causes Button Postback in ASP.NETBeaud.2009-05-01T20:30:54Z2009-05-01T20:30:54Z<blockquote>
<p>I suppose I could detect "enter" key presses from these text boxes with javascript</p>
</blockquote>
<p>That's what I did to get around that behaviour and it works great in IE7 and FF3. It's just a little unnatural.</p>
<p>Here is a generic exemple:</p>
<pre><code> function TextBox1_KeyDown(sender, e)
{
var key;
if(window.event)
key = window.event.keyCode; //IE
else
key = e.which; //firefox
if(key == 13 && $("#TextBox1").val() != "")
{
WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("TextBox1", "", true, "", "", false, true));
}
return (key != 13);
}
</code></pre>
<p>I used WebForm_DoPostBackWithOptions because I needed validators to trigger. Otherwise, you might want to use __DoPostBack.</p>
<p>Here are the "prototypes":</p>
<pre><code>function __doPostBack(eventTarget, eventArgument)
function WebForm_PostBackOptions(eventTarget, eventArgument, validation, validationGroup, actionUrl, trackFocus, clientSubmit)
{
this.eventTarget = eventTarget;
this.eventArgument = eventArgument;
this.validation = validation;
this.validationGroup = validationGroup;
this.actionUrl = actionUrl;
this.trackFocus = trackFocus;
this.clientSubmit = clientSubmit;
}
function WebForm_DoPostBackWithOptions(options)
</code></pre>
<p>Hope it helps.</p>
<p>P.S.: I used JQuery here but $get would be the same.</p>
http://stackoverflow.com/questions/813095/textbox-causes-button-postback-in-asp-net/813150#8131500Answer by for TextBox causes Button Postback in ASP.NET2009-05-01T20:36:04Z2009-05-01T20:36:04Z<p>You can disable the Enter key from being pressed, so the user will have to click on of your ImageButtons. Just paste this javascript block onto your page:</p>
<pre><code><script type="text/javascript">
function stopRKey(evt) {
var evt = (evt) ? evt : ((event) ? event : null);
var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);
if ((evt.keyCode == 13) && (node.type=="text")) {return false;}
}
document.onkeypress = stopRKey;
</script>
</code></pre>
http://stackoverflow.com/questions/813095/textbox-causes-button-postback-in-asp-net/937481#9374810Answer by AndreiS for TextBox causes Button Postback in ASP.NETAndreiS2009-06-02T00:47:27Z2009-06-02T00:47:27Z<p>here's a more elegant solution</p>
<p><code><asp:TextBox ID="TextBox1" runat="server"
onkeydown = "return (event.keyCode!=13);" >
</asp:TextBox></code></p>
<p>read the entire post at www . aspsnippets.com/post/2009/05/21/Disable-Enter-key-in-TextBox-to-avoid-postback-in-ASPNet.aspx</p>