473,794 Members | 2,804 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP.NET 2.0: Multiple problems with DefaultButton

I am facing some issues with the webforms DefaultButton functionality:

#1 One text box ==> hitting enter works in IE but not in Firefox (1.5)
#2 One text box and req. field validator ==> problem in IE
#3 two text boxes ==> not even a postbak in Firefox.

The three problems I have could be simply reproduced creating a new webform
and pasting the code below in the codebehind file.

TextBox bx1;
TextBox bx2;
protected void Page_Load(objec t sender, EventArgs e)
{
if (IsPostBack)
Validate();

bx1 = new TextBox();
bx1.ID = "bx1";

//bx2 = new TextBox(); // uncomment this line for problem #3
//bx2.ID = "bx2"; // uncomment this line for problem #3

RequiredFieldVa lidator rf = new RequiredFieldVa lidator();
rf.ControlToVal idate = bx1.ID;
rf.EnableClient Script = true;
rf.ErrorMessage = "mandatory" ;
LinkButton lbSubmit = new LinkButton();
lbSubmit.ID = "lbSubmit";
lbSubmit.Click += new EventHandler(lb Submit_Click);
lbSubmit.Text = "submit";

form1.DefaultFo cus = bx1.ID;
form1.DefaultBu tton = lbSubmit.ID;

form1.Controls. Add(bx1);
//form1.Controls. Add(bx1); // uncomment this line for problem #3
//form1.Controls. Add(rf); // uncomment this line for problem #2
form1.Controls. Add(lbSubmit);

}

void lbSubmit_Click( object sender, EventArgs e)
{
form1.Controls. Add(new LiteralControl( "lbSubmit_Click : Text is: " +
bx1.Text));
}
Finally, more detailed description of the problems:

Problem #1:
Adding text in the textbox and hitting enter works in IE like expected: my
Click handler of the submit button is called.
However, this does not work in Firefox. Postback is triggered, but the click
handler is not called. My workaround for this is inserting the follwoign code
in Page_Load:
if (IsPostBack && Request.Form["__EVENTTAR GET"] == "")
Search(this, EventArgs.Empty );
Problem #2:
If I add a required field validator for the text box (uncomment
form1.Controls. Add(rf); in code above), I am getting problems in IE, too:
When entering no text in the textbox and just hitting enter, the field
validator tells me I need to add text. After adding text and hitting enter,
thepostback is done but the click handler is not called.
If I then once again hit enter, another postback in done and now the click
handler is called.

Problem #3:
If I add an additional textbox to the form, Firefox will even stop doing the
postback!
Any help would be greatly appreciated.
Dieter
Feb 4 '06 #1
3 4915
Hi Dieter,

Thanks for posting!

For the current issue, all problems have been performed and reproduced on
my machine.

For the first and third, based on my experience, the problem is caused by
the behavior of the Firefox browser. The linkbutton control which is parsed
in the Firefox browser is different with the IE browser. After performing
some tests, I suggest you use the button control instead of the linkbutton.

For the second, it seems the JavaScript function for the validation control
leads to the current issue. I¡¯ll discuss with the Dev team about it. It
will take some time to determine some factors. I¡¯ll reply to you ASAP when
I get some information. I appreciate your understanding!

Regards,

Yuan Ren [MSFT]
Microsoft Online Support

Feb 6 '06 #2
Hello Yuan,

thanks for your reply.

After performing
some tests, I suggest you use the button control instead of the linkbutton. I prefer to use LinkButtons since they are prettier.
Is the malfunctioning of the DefaultButton property in Firefox (issues #1
and #3) a bug or by design? There is no hint in the online help for
DefaultButton that this just works for IE.
For the second, it seems the JavaScript function for the validation control
leads to the current issue. I¡¯ll discuss with the Dev team about it. It
will take some time to determine some factors. I¡¯ll reply to you ASAP when
I get some information. I appreciate your understanding!

OK, thanks for the info.
Feb 6 '06 #3
Hi Dieter,

Thanks for your reply!

For the second issue, I suggest you open a new case to the Microsoft PSS.
Since the issue maybe is caused by the product bug, you will not be charged
for the case. The Microsoft PSS will supply the workaround or hot fix for
the current issue.

For your reference, I attached steps to contact Microsoft PSS here: You can
contact Microsoft Product Support directly to discuss additional support
options you may have available, by contacting us at 1-(800)936-5800 or by
choosing one of the options listed at
http://support.microsoft.com/common/...gp;en-us;offer
prophone

For the first and third, since the html code and JavaScript code which are
rendered by the IE or Firefox browser are same, I don't think this is an
ASP.NET issue. Because the same code can be worked fine for the IE browser
but not for the Firefox, I suggest you contact some support specialist for
Firefox to find the key factor.

Thanks for your understanding!

Regards,

Yuan Ren [MSFT]
Microsoft Online Support

Feb 7 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
1530
by: mablejune | last post by:
HtmlForm frm = (HtmlForm)Master.FindControl("formMain"); frm.DefaultButton = "btnSubmit"; txtCall.Focus(); Running this code produces the following error message: The DefaultButton of 'formMain' must be the ID of a control of type IButtonControl. btnSubmit is a System.Web.UI.WebControls.Button which implements
0
1199
by: Jeff | last post by:
We have 3 environments, Dev, Qa, Prod. I'm working on an application that has a search page. On the search page is 3 panels. One panel is the advanced search, another a normal search and the third contains a search and clear button. I hide one of the search panels based on what the user wants. When search is clicked a datagrid is populated to the right of the panels. What I want is for the search button to be "clicked" when the user...
7
2813
by: Tim_Mac | last post by:
this is a re-post of an earlier message. i'm posting it under my MSDN alias for a better chance of reply :) when you press return in a multiline textbox, you expect to insert a newline. However, if you set the Form.DefaultButton property, whatever javascript code is employed by Asp.Net to handle this functionality intercepts the key press and submits the form, when using Firefox. This is a potentially serious problem and certainly a...
3
7450
by: John Mott | last post by:
Hi All, I'm trying to set the defaultbutton for a form to a button contained in a step template for a wizard control. This is the code in PreRender: switch (myWizard.ActiveStep.StepType) { case WizardStepType.Start: this.Page.Form.DefaultButton = "StartNextButton"; break; case WizardStepType.Finish: this.Page.Form.DefaultButton = "FinishButton"; break;
2
12995
by: =?Utf-8?B?QmlnSm9obg==?= | last post by:
We can set the default button and focus field in ASP.Net 2.0 on the Form tag. My form tag is in the Master page, but the controls are in containers. I read through a few articles which did not work. I added a "runat=server" to make the values visible to the devel. env. I added properties to the masters codebehind: Private strDefaultFocus As String
4
9758
by: Tim Mackey | last post by:
hi, asp.net 2. can anyone explain why this code does not work in firefox (2.0.0.1), but does work in IE 7. if you hit enter after typing something into the textbox, it should fire the Submit button click handler, instead it fires the event for the bogus button above it. btw it doesn't matter if i set it to ClientID, UniqueID or "btnSubmit" hard-coded, they all fail. <form id="form1" runat="server"> <asp:Button ID="Button1"...
9
6773
by: Veerle | last post by:
Hi, When you use multiple asp:Buttons on one Form, then asp.net generates html submit buttons for all of them. When you put your cursor in one of the textfields of the form, the default submit button is the first submit button of the form. So if you press enter, then the form is submitted as if you pressed the first submit button of the form. But sometimes, you want the default button to be the second or third submit button of your...
0
1351
by: =?Utf-8?B?QWxleCBNYWdoZW4=?= | last post by:
Hi. I have a MasterPage but on each particular page that uses it, I need to be able to set the DefaultButton for the Form for that page. From the .cs file of my ASPX page, I have tried: - Form.DefaultButton = MyButton; - Form.DefaultButton = MyButton.ClientID; Both of these result in a runtime error: The DefaultButton of 'MainFrm' must be the ID of a control of type IButtonControl
0
2783
by: thersitz | last post by:
Hi, Using aspnet3.5,VStudio 2008, VB 1.) I have a set of pages, with a search text box button within a userControl that searches across our websites and is registered in a masterpage. 2) Also within that set of pages, I have a second, distinct seach box and button that searches a specific database that is within an asp:content area
0
9519
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10435
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10163
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10000
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9037
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6779
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5436
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5563
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4113
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.