Tagged Questions

7
votes
3answers
829 views

ASP.NET Canceling the Default Submit Button

I have an ASP.NET application where there's a few ASP.NET buttons and several plain HTML buttons. Anytime there's a textbox where a user hits enter, the ASP.NET button trys to submit the form. I ...
4
votes
1answer
747 views

enter key in asp.net firing wrong button

I have a text box and many buttons. When user is in some text box and presses the "enter" key then specific button click event is raised. I read on the internet that there are some problems with the ...
3
votes
2answers
223 views

Setting DefaultButton to button.UniqueID throws exception

The problem I'm trying to solve: I have several text boxes in an asp:Panel. When the user hits Enter from any of those boxes, I want the form to submit as if they've clicked btnAddTag. (When the ...
2
votes
3answers
392 views

ASP.NET DefaultButton and MasterPages

In my site i have a search function in the master page (no defaultbutton set there, also not in form). in a content page, i have a login, there i use a asp panel with defaultbutton. but when i click ...
2
votes
1answer
1k views

ASP.NET Master page DefaultButton override

I have a master page with a form element and the defaultbutton attribute set to a server-side ImageButton. On one of my pages I want to "override" the masterpage defaultbutton attribute by setting ...
2
votes
4answers
2k views

set linkbutton as default button for asp:panel in asp.net [closed]

Possible Duplicate: Link Button on the page and set it as default button, work fine in IE but not in Mozila How to set linkbutton as default button for asp:panel in asp.net? I know a button ...
2
votes
2answers
1k views

Panel DefaultButton and GridView Control with EditItemTemplate

I have a GridView control on a page with a Panel that has a DefaultButton. I am trying to get the "Update" button to work with the Enter key when a user edits a row. It works fine with the mouse. When ...
2
votes
3answers
684 views

Multiple Default Buttons in a User Control

I have a user control that is comprised of 3 textboxes, 3 buttons and a gridview. I can set the defaultbutton property of the form, but that would only affect one button. Each textbox/button combo ...
1
vote
0answers
30 views

how to set default botton in different tabs?

I have a content page that have 4 different tabs. I use following Jquery to control the tabs. I need to set the default button for each tab, so that when the user click Enter, the event of the default ...
1
vote
1answer
401 views

Panel DefaultButton not works when Textbox is extended by AJAX Toolkit AutoComplete

I am using ASP.NET Panel to set Default Button for some Controls like TextBox but it seems to not work due to AJAX Control Toolkit's AutoCompleteExtender. Pls help.. ! Code is as below: ...
1
vote
2answers
464 views

default LinkButton on enter in a Master Page

I looked through and through and found no clean solution for this. A colleague of mine did find a pretty dirty solution but I don't see why the solutions in the links reference below does not work ...
0
votes
3answers
53 views

Is this a good workaround for enter button submitting in a text box?

So I have a page, it had multiple textboxes, linkbuttons, and buttons. Currently, a user clicks a linkbutton "Edit" which allows them to enter data in that row, via textboxes. However, upon pressing ...
0
votes
1answer
144 views

asp:login default button doesn't work

i'm trying to set a default button to my login control, and after reading several similar questions i learned about the panel default button using the login controls ID <asp:Panel runat="server" ...
0
votes
3answers
163 views

How to disable buttons get triggered with <Enter> on aspx-pages

I have a aspx-page with several textboxes and buttons. However, when the cursor is in a textbox, one of the buttons is still "in focus". So when I hit the Enter-key the button is pressed. What I want ...
0
votes
4answers
753 views

defaultbutton in ASPX content page gives The DefaultButton of 'pnlHolder' must be the ID of a control of type IButtonControl

I am trying to set a default button in my ASPX page. I have a master page so the form is there. I have a panel in the content page that holds a table that organizes a number of textboxes, dropdowns ...
0
votes
1answer
88 views

IIS7 Rewrite changing default button

Hey, I've run into a strange problem regarding default buttons in master pages and IIS7 rewrite module. All my content pages have default buttons set in the code-behind (on prerender), or they are ...
0
votes
1answer
1k views

How set panel Default Button that is inside a details view in asp.net?

<asp:panel ID="Panel1" runat="server"> <asp:DetailsView ID="DetailsView1" .... <asp:templatefield ShowHeader="False"> <insertitemtemplate> <asp:Button ID="btnAdd" ...
0
votes
4answers
595 views

DefaultButton in ASP.NET forms

What is the best solution of defaultButton and "Enter key pressed" for ASP.NET 2.0-3.5 forms?