473,538 Members | 15,618 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(object 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

RequiredFieldValidator rf = new RequiredFieldValidator();
rf.ControlToValidate = bx1.ID;
rf.EnableClientScript = true;
rf.ErrorMessage = "mandatory";
LinkButton lbSubmit = new LinkButton();
lbSubmit.ID = "lbSubmit";
lbSubmit.Click += new EventHandler(lbSubmit_Click);
lbSubmit.Text = "submit";

form1.DefaultFocus = bx1.ID;
form1.DefaultButton = 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["__EVENTTARGET"] == "")
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 4893
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
1518
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
1186
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...
7
2791
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...
3
7435
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 =...
2
12987
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...
4
9728
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"...
9
6752
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...
0
1340
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...
0
2773
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
7367
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7537
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. ...
1
7291
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...
0
7651
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...
0
5832
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...
0
4855
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...
0
3357
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1764
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
1
934
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.