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

Home Posts Topics Members FAQ

RequiredFieldVa lidator failed?

Hi,

I have a Asp.Net written in C#. It serve as information input form. The form encounters sort of
random problem with the email field and state field. I have validator attached with these 2 fields
as the following:
=====
<form id="creditcardf orm" method="post" runat="server">
Email: <asp:textbox id="txtBillEmai l" maxlength="50" width="200" runat="server" />
<asp:requiredfi eldvalidator id="vp10" runat="server" initialvalue=""
controltovalida te="txtBillEmai l" errormessage="B illing Email cannot be empty" />
<asp:regularexp ressionvalidato r id="vp11" runat="server" controltovalida te="txtBillEmai l"
errormessage="B illing Email must follow em***@host.domain"
validationexpre ssion="^.+\@.+\ ..+$" display="Dynami c" />

State: <asp:dropdownli st id="lstBillStat e" runat="server" />
<asp:requiredfi eldvalidator id="vp7" runat="server" initialvalue=""
controltovalida te="lstBillStat e"
errormessage="B illing State must select one" display="Dynami c" />

<asp:button id="btnSubmit" causesvalidatio n="True" text="Submit" runat="server" cssclass="butto n" />
</form>
=====

My understanding is that the <asp:requiredfi eldvalidator> should guarantee the value of the field when the value of
"causesvalidati on" sets to "True" in the submit button. But what happened was that no error was generated when "btnSubmit" was clicked, but the value of one of these 2 fields get lost in the codebehind file. I tried to catch it on our development server, but I've never caught it. It only occurs on our production server. This problem doesn't always occur.
It only happens once a while randomly.

Would you please help me to figure out the cause of such value loss?

Thank you

hb
Nov 19 '05 #1
2 2100
Both the regular expression and custom validators do not perform
client-side or server-side validation when no value is entered into the
control that is set for the validators' "ControlToValid ate" properties.
This is by design.

Maybe that's what is causing it???
Hongbo wrote:
Hi,

I have a Asp.Net written in C#. It serve as information input form. The form encounters sort of
random problem with the email field and state field. I have validator attached with these 2 fields
as the following:
=====
<form id="creditcardf orm" method="post" runat="server">
Email: <asp:textbox id="txtBillEmai l" maxlength="50" width="200" runat="server" />
<asp:requiredfi eldvalidator id="vp10" runat="server" initialvalue=""
controltovalida te="txtBillEmai l" errormessage="B illing Email cannot be empty" />
<asp:regularexp ressionvalidato r id="vp11" runat="server" controltovalida te="txtBillEmai l"
errormessage="B illing Email must follow em***@host.domain"
validationexpre ssion="^.+\@.+\ ..+$" display="Dynami c" />

State: <asp:dropdownli st id="lstBillStat e" runat="server" />
<asp:requiredfi eldvalidator id="vp7" runat="server" initialvalue=""
controltovalida te="lstBillStat e"
errormessage="B illing State must select one" display="Dynami c" />

<asp:button id="btnSubmit" causesvalidatio n="True" text="Submit" runat="server" cssclass="butto n" />
</form>
=====

My understanding is that the <asp:requiredfi eldvalidator> should guarantee the value of the field when the value of
"causesvalidati on" sets to "True" in the submit button. But what happened was that no error was generated when "btnSubmit" was clicked, but the value of one of these 2 fields get lost in the codebehind file. I tried to catch it on our development server, but I've never caught it. It only occurs on our production server. This problem doesn't always occur.
It only happens once a while randomly.

Would you please help me to figure out the cause of such value loss?

Thank you

hb


Nov 19 '05 #2
Hi, Joey,

Thank you for helping me.

I have ASP:RequiredFie ldValidator attached with both TextBox and
DropdownList.
My understanding is that ASP:RequiredFie ldValidator should prevent the
submit
button click to go any further if either of the controls contains no value.

But the fact was that the button click event did fire without error. What I
guess is that
the user might input value in these 2 controls and that the value get lost
somehow
when the button click event tried to retrieve value from these control in
CodeBehind.

But how could that happen?
"Joey" <jo*********@to pscene.com> wrote in message
news:11******** *************@o 13g2000cwo.goog legroups.com...
Both the regular expression and custom validators do not perform
client-side or server-side validation when no value is entered into the
control that is set for the validators' "ControlToValid ate" properties.
This is by design.

Maybe that's what is causing it???
Hongbo wrote:
Hi,

I have a Asp.Net written in C#. It serve as information input form. The form encounters sort of random problem with the email field and state field. I have validator attached with these 2 fields as the following:
=====
<form id="creditcardf orm" method="post" runat="server">
Email: <asp:textbox id="txtBillEmai l" maxlength="50" width="200" runat="server" /> <asp:requiredfi eldvalidator id="vp10" runat="server" initialvalue=""
controltovalida te="txtBillEmai l" errormessage="B illing Email cannot be empty" /> <asp:regularexp ressionvalidato r id="vp11" runat="server" controltovalida te="txtBillEmai l" errormessage="B illing Email must follow em***@host.domain"
validationexpre ssion="^.+\@.+\ ..+$" display="Dynami c" />

State: <asp:dropdownli st id="lstBillStat e" runat="server" />
<asp:requiredfi eldvalidator id="vp7" runat="server" initialvalue=""
controltovalida te="lstBillStat e"
errormessage="B illing State must select one" display="Dynami c" />

<asp:button id="btnSubmit" causesvalidatio n="True" text="Submit" runat="server" cssclass="butto n" /> </form>
=====

My understanding is that the <asp:requiredfi eldvalidator> should guarantee the value of the field when the value of "causesvalidati on" sets to "True" in the submit button. But what happened was that no error was generated when "btnSubmit" was clicked, but
the value of one of these 2 fields get lost in the codebehind file. I tried
to catch it on our development server, but I've never caught it. It only
occurs on our production server. This problem doesn't always occur. It only happens once a while randomly.

Would you please help me to figure out the cause of such value loss?

Thank you

hb

Nov 19 '05 #3

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

Similar topics

6
2161
by: BK | last post by:
I'm having a really strange problem with and HtmlSelect server control (listbox) and a RequiredFieldValidator that I am trying to use to make sure that someone has items in the listbox. The way that the HtmlSelect is populated is via a combination of client-side javascript and another aspx page (launched by the javascript). Anyway, everything seems to work just fine in terms of populating the HtmlSelect. However, when I postback the...
0
2031
by: Nicolas | last post by:
How can I have only one RequiredFieldValidator to control two TextBox webcontrols so that only one message is displayed <asp:Label id="lbl_UserName" runat="server"></asp:Label><br> <asp:TextBox id="txt_UserName" runat="server"></asp:TextBox> <asp:RequiredFieldValidator id="R_lbl_UserName" runat="server" ControlToValidate="txt_UserName" ErrorMessage="RequiredFieldValidator"></asp:RequiredFieldValidator> <br> <asp:Label id="lbl_Password"...
3
2949
by: me | last post by:
Is there any particular reason why a requiredfieldvalidator cant validate a listbox? I have bound the two together but the validator always returns false on isvalid and so does the Page, no matter if the user selects an item in the listbox or not.
7
8989
by: Ed West | last post by:
Hello, I have a simple form with some input boxes. After validation if one fails, then I would like to at the top of the page say something like "The following fields in red are required" and then change the label in front of the textbox or dropdown list to red... is this possible with asp.net? It seems you can only put a RequiredFieldValidator on the page, and if it fails validation then that text is displayed... ? Thanks
4
10049
by: James | last post by:
Hello, I have a RequiredFieldValidator for several textbox controls on a form. Here's an example with the RequiredFieldValidator. EnableClientScript, Enabled, and Visible are set to true for the RequiredFieldValidator. <asp:textbox id="FirstName" MaxLength="25" runat="server"></asp:textbox>
4
5108
by: Joe | last post by:
Hello, I have created a login page using dotnet. I am using requiredFieldValidator and noticed that the code works fine in IE but not in Netscape, Opera, Mozilla, Firefox, etc. For example if I do not enter anything in the form in IE, then form won't be submitted but in other browsers it is submitted. I checked that JavaScript is enabled in Netscape, Opera, Mozilla, Firefox,
5
3240
by: Fernando Lopes | last post by:
Hi. I want to show an image in a requiredfield validator instead of "*". So, I 'm set the requiredfieldvalidator attributes like following: <asp:RequiredFieldValidator id=rfvFirstName ControlToValidate="AddressName" Display="Dynamic" ErrorMessage="First Name Is Required" Runat="server" CssClass="AlertText"
2
6479
by: Christina | last post by:
Hello !! I am creating a dynamic textbox and want to validate it using the requiredfieldvalidator. These are the steps which I tried: ==================================================== 1) In Page_load, Dim Email As New Label
3
4984
by: Bogdan | last post by:
Hi, I have a OnClientClick script assigned to a button. From the script, I'd like to check if RequiredFieldValidator attached to a textbox on the page has failed. The Page_IsValid works fine with - for example - regex validator but it does not work with the required field validator. Any suggestions will be appreciated. Thanks, Bogdan
0
9680
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 usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10456
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...
0
10230
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10174
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
10012
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...
1
7548
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6788
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
5575
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4118
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.